-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.21 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"private": true,
"workspaces": [
"blogsearch",
"blogsearch-crawler",
"gatsby-plugin-blogsearch",
"examples/demo",
"examples/crawler-examples/reactjs.org",
"examples/crawler-examples/kubernetes.io"
],
"scripts": {
"build": "make all",
"build:blogsearch": "make build-blogsearch",
"build:blogsearch-crawler": "make build-blogsearch-crawlers",
"build:examples": "make build-examples",
"test": "make test",
"start": "make start",
"clean": "make clean",
"build-in-docker": "make all-in-docker",
"build-docker-image": "make build-docker-image"
},
"devDependencies": {
"@types/node": "^12.12.18",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.12.0",
"eslint": "^6.8.0",
"eslint-config-standard-with-typescript": "^12.0.1",
"eslint-plugin-eslint-comments": "^3.1.2",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsdoc": "^21.0.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"prettier": "^1.19.1",
"typescript": "^3.8.0-beta",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1"
}
}