-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (70 loc) · 1.67 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
66
67
68
69
70
71
{
"private": true,
"name": "portfolio",
"version": "0.1.0",
"scripts": {
"build": "react-scripts build",
"predeploy": "npm run build",
"deploy": "gh-pages -b gh-pages -d build",
"eject": "react-scripts eject",
"start": "react-scripts start",
"test": "react-scripts test"
},
"dependencies": {
"@apollo/react-hooks": "^3.1.3",
"apollo-boost": "^0.4.4",
"baseui": "^9.65.3",
"bootstrap": "^4.4.1",
"chart.js": "^2.9.3",
"fs": "0.0.1-security",
"gh-pages": "^2.1.1",
"graphql": "^14.5.8",
"node-fetch": "^2.6.0",
"prettier-package-json": "^2.1.3",
"radium": "^0.26.0",
"react": "^16.10.2",
"react-bootstrap": "^1.0.0-beta.16",
"react-chartjs-2": "^2.9.0",
"react-dom": "^16.10.2",
"react-helmet": "^6.1.0",
"react-reveal": "^1.2.2",
"react-router-dom": "^5.1.2",
"react-scripts": "3.2.0",
"react-spring": "^8.0.27",
"styled-components": "^5.1.1",
"styletron-engine-atomic": "^1.4.6",
"styletron-react": "^5.2.7"
},
"devDependencies": {
"@iconify/icons-logos": "^1.0.9",
"@iconify/react": "^1.1.1",
"dotenv": "^6.2.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "2.0.5"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"extends": "react-app"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.json": "prettier-package-json --write",
"*.{js,css,md}": "prettier --write"
}
}