-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
65 lines (65 loc) · 1.5 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": "ourfirstapp",
"version": "0.1.0",
"private": true,
"dependencies": {
"@apollo/client": "^3.6.9",
"apollo-server-express": "^3.9.0",
"express": "^4.18.1",
"graphql": "^16.5.0",
"javascript-time-ago": "^2.5.4",
"node-json-db": "^1.5.0",
"node-sass": "^7.0.1",
"nodemon": "^2.0.18",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-feather": "^2.0.10",
"react-jss": "^10.9.0",
"react-loading": "^2.0.3",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.1",
"uuid": "^8.3.2",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"concurrently": "^7.2.2",
"eslint-config-airbnb": "^19.0.4",
"husky": "^8.0.0",
"prettier": "^2.7.1"
},
"scripts": {
"start": "concurrently 'npm run start:server' 'npm run start:frontend'",
"start:frontend": "PORT=8000 react-scripts start",
"start:server": "nodemon src/server/index.js",
"format": "prettier --write \"./**/*.{js,jsx,json}\"",
"prepare": "husky install\n"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"rules": {
"react/prop-types": 2
}
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}