-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.9 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
72
73
74
75
76
77
78
{
"name": "matthew-portfolio",
"version": "0.1.0",
"private": true,
"proxy": "http://localhost:8081",
"engines": {
"node": "16.19.0",
"npm": "6.13.4"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"babel-core": "^6.26.3",
"babel-preset-latest": "^6.24.1",
"babel-watch": "^2.0.7",
"concurrently": "^3.5.0",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"typescript": "^3.9.5"
},
"dependencies": {
"@carbon/icons-react": "^10.13.0",
"@react-spring/addons": "^9.0.0-beta.33",
"@react-spring/parallax": "^9.0.0-rc.3",
"compression": "^1.7.0",
"express": "^4.15.3",
"framer-motion": "^6.0.0",
"path": "^0.12.7",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "16.13.1",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-scripts": "5.0.0",
"react-spring": "^9.0.0-rc.3",
"request": "^2.79.0",
"sass": "^1.55.0",
"styled-components": "^5.1.1",
"sw-precache": "^5.2.0"
},
"scripts": {
"start": "DISABLE_ESLINT_PLUGIN=true concurrently \"PORT=8080 react-scripts start\" \"PORT=8081 babel-watch index.js\"",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"deploy": "now && now --target production",
"now-dev": "react-scripts start",
"now-build": "react-scripts build",
"lint": "eslint .",
"lint-fix": "eslint --fix ."
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**.{js,jsx}": [
"pretty-quick --staged",
"eslint --fix",
"git add"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}