-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
60 lines (60 loc) · 1.57 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "personal-block-next",
"version": "0.1.0",
"private": true,
"dependencies": {
"concurrently": "^5.0.0",
"node-sass": "^4.12.0",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-paginate": "^6.3.0",
"react-scripts": "3.2.0"
},
"scripts": {
"dev": "concurrently \"npm:dev:watch:src\" \"npm:dev:watch:public\"",
"dev:start-env": "cd build && ls && web-ext run -u https://www.google.com/search?q=test",
"dev:watch:src": "cra-build-watch",
"dev:watch:public": "npm-watch",
"cp-public": "cp -r ./public/* ./build",
"build:dev": "INLINE_RUNTIME_CHUNK=false react-scripts build",
"build": "yarn build",
"build:production": "INLINE_RUNTIME_CHUNK=false react-scripts build && cd build && web-ext build -a ~/Desktop",
"test": "react-scripts test"
},
"watch": {
"cp-public": [
"public/"
]
},
"eslintConfig": {
"extends": "react-app",
"env": {
"webextensions": true,
"browser": true,
"node": true
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"cra-build-watch": "^3.0.0",
"eslint": "^6.5.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-standard": "^4.0.1",
"npm-watch": "^0.6.0"
}
}