-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.19 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "node server.js",
"heroku-postbuild": "cd client && npm install && npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@material-ui/core": "^4.12.4",
"@material-ui/lab": "^4.0.0-alpha.61",
"@mui/base": "^5.0.0-alpha.104",
"@mui/icons-material": "^5.10.9",
"@mui/lab": "^5.0.0-alpha.106",
"@mui/material": "^5.10.12",
"bcrypt": "^5.1.0",
"cheerio": "^1.0.0-rc.12",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"eslint": "^8.26.0",
"express": "^4.18.2",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.10.0",
"node-cron": "^3.0.2",
"node-fetch": "^3.2.10",
"react-joyride": "^2.5.3",
"react-loader-spinner": "^5.3.4",
"react-modal": "^3.16.1",
"request-promise": "^4.2.6",
"survey-react-ui": "^1.9.55"
},
"devDependencies": {
"jest": "^29.2.2",
"supertest": "^6.3.1"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}