-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.98 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
{
"name": "kimbook-v3",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/cli": "^7.10.3",
"@babel/core": "^7.10.3",
"@babel/node": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"aws-sdk": "^2.714.0",
"classlist.js": "^1.1.20150312",
"connect-mongo": "^3.2.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"cross-env": "^7.0.2",
"crypto-random-string": "^3.2.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"helmet": "^3.23.3",
"http-proxy-middleware": "^1.0.4",
"mongo": "^0.1.0",
"mongoose": "^5.9.21",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"nodemailer": "^6.4.10",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^6.0.1",
"query-string": "^6.13.1",
"socket.io": "^2.3.0"
},
"scripts": {
"start": "npm-run-all --parallel start:**",
"start:client": "cd client && npm start",
"start:dev-server": "nodemon --exec babel-node ./server/init.js",
"build": "cd client && npm build",
"test": "cd client && npm test",
"eject": "cd client && npm eject",
"storybook": "cd client && npm run storybook",
"build-storybook": "cd client && npm run build-storybook",
"lint": "cd client && ./node_modules/.bin/eslint ."
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"eslint": "^7.5.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8"
}
}