-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 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
41
42
43
44
45
{
"name": "Simpl",
"version": "1.0.4",
"description": "A minimal new tab extension",
"private": true,
"homepage": ".",
"author": "cr42yh17m4n@gmail.com",
"license": "MIT",
"scripts": {
"startDevServer": "react-app-rewired start",
"start": "web-ext run -v -s build/",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-scripts eject",
"release": "rm -rf web-ext-artifacts/ && npm run build && web-ext build -v -s build/",
"packageSourceCode": "rm -rf simpl-source-code.zip && git archive -o simpl-source-code.zip HEAD"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"dependencies": {
"local-storage": "^2.0.0",
"mobx": "^5.9.4",
"mobx-react": "^5.4.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-scripts": "2.1.8"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.4.0",
"customize-cra": "^0.2.12",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"prettier": "^1.17.0",
"react-app-rewired": "^2.1.1",
"web-ext": "^3.0.0",
"webpack-cli": "^3.3.0"
}
}