-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.94 KB
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
{
"name": "hack-care-2",
"version": "0.1.0",
"private": true,
"dependencies": {
"@apollo/react-hooks": "^3.1.3",
"@sendgrid/mail": "^6.5.5",
"apollo-cache-inmemory": "^1.6.5",
"apollo-client": "^2.6.8",
"apollo-link-context": "^1.0.19",
"apollo-link-http": "^1.5.16",
"apollo-server-express": "^2.11.0",
"assert": "^2.0.0",
"bcrypt": "^4.0.1",
"bootstrap": "4.4.1",
"classnames": "2.2.6",
"cookie-parser": "1.4.4",
"csurf": "^1.11.0",
"debug": "4.1.1",
"express": "4.17.1",
"express-session": "^1.17.0",
"fs-extra": "8.1.0",
"graphql": "^14.6.0",
"http-errors": "1.7.3",
"js-cookie": "^2.2.1",
"moment": "^2.24.0",
"mongodb": "^3.5.5",
"morgan": "1.9.1",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"react": "16.12.0",
"react-datepicker": "2.14.1",
"react-datetime-picker": "^2.9.0",
"react-dom": "16.12.0",
"react-router-dom": "5.1.2",
"react-scripts": "3.2.0",
"validator": "^13.0.0"
},
"eslintConfig": {
"extends": "react-app"
},
"devDependencies": {
"concurrently": "5.0.2",
"nodemon": "^2.0.2"
},
"scripts": {
"postinstall": "yarn build || npm run build",
"start": "yarn start-backend || npm run start-backend",
"start-dev": "concurrently \"yarn start-frontend || npm run start-frontend\" \"yarn start-backend || npm run start-backend\"",
"start-backend": "node server/server.js",
"start-frontend": "react-scripts start",
"start-dev-svwatch": "concurrently \"yarn start-frontend\" \"yarn watch-backend\"",
"watch-backend": "nodemon --inspect server/server.js --watch server --watch node_modules",
"build": "node ./buildScript",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint src/**/*.js src/**/*.jsx"
},
"proxy": "http://localhost:3001",
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}