-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.75 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
61
62
63
64
65
{
"name": "inception",
"private": false,
"version": "0.1.0",
"homepage": "http://jucesarsilva.github.io/inception/",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/react-fontawesome": "^0.1.11",
"@material-ui/core": "^4.11.0",
"@material-ui/lab": "^4.0.0-alpha.56",
"axios": "^0.20.0",
"classnames": "^2.2.6",
"core-js": "^3.6.5",
"gh-pages": "^3.1.0",
"history": "^4.10.1",
"jest-canvas-mock": "^2.3.0",
"jest-sinon": "^1.0.4",
"node-sass": "^4.14.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-app-polyfill": "^1.0.5",
"react-device-detect": "^1.14.0",
"react-dom": "^16.13.1",
"react-router-dom": "^5.1.2",
"react-scripts": "^3.4.3",
"sinon": "^9.2.0"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "=6.8.0",
"eslint-config-airbnb": "^18.2.0",
"husk": "^0.5.3",
"jest-enzyme": "^7.1.2",
"lint-staged": "^10.2.2",
"open": "^7.0.3",
"prettier": "^2.0.5",
"react-test-renderer": "^16.13.1",
"regenerator-runtime": "^0.13.5"
},
"scripts": {
"build": "react-scripts build",
"lint": "eslint src/ --ext js,jsx",
"test": "react-scripts test --verbose --coverage && yarn lint",
"precommit": "lint-staged",
"start": "react-scripts start",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"production": [
">1%",
"last 4 versions",
"Firefox ESR",
"not ie < 11"
]
}
}