-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.49 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
{
"name": "troubleshooting-tool",
"version": "0.1.0",
"private": true,
"license": "MIT",
"author": "a.kabakibi",
"homepage": "https://ahmadkabakibi.github.io/troubleshooting-tool",
"dependencies": {
"bootstrap": "4.1.3",
"gh-pages": "2.0.1",
"prop-types": "15.6.2",
"react": "16.6.3",
"react-dom": "16.6.3",
"react-router-dom": "4.3.1",
"react-scripts": "2.1.1",
"reactstrap": "6.5.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "CI=true react-scripts test --env=jsdom",
"test:coverage": "react-scripts test --env=jsdom --coverage",
"eject": "react-scripts eject",
"lint": "eslint \"src/**/*.js\" && prettier --list-different \"src/**/*.js\" | snazzy",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@babel/core": "7.1.6",
"@babel/preset-env": "7.1.6",
"@babel/preset-react": "7.0.0",
"eslint": "5.6.0",
"eslint-config-prettier": "3.3.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-node": "8.0.0",
"eslint-plugin-prettier": "3.0.0",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-react": "7.11.1",
"eslint-plugin-standard": "4.0.0",
"prettier": "1.15.3",
"snazzy": "8.0.0",
"react-app-polyfill": "0.1.3"
}
}