-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.21 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
{
"name": "backend",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"start-dev": "NODE_ENV=development node ./bin/www",
"test:unit": "npx jest spec",
"test-client": "cd client && CI=true npm test",
"test": "npm run test:unit && npm run test-client",
"build": "npm install && cd client && npm install --force && npm run build"
},
"dependencies": {
"axios": "^0.27.2",
"bcrypt": "^5.0.1",
"bcryptjs": "^2.4.3",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"dayjs": "^1.11.2",
"debug": "~2.6.9",
"dotenv": "^16.0.1",
"express": "~4.16.1",
"express-session": "^1.17.3",
"http-errors": "~1.6.3",
"jade": "^0.29.0",
"materialize": "^1.0.0",
"materialize-css": "^1.0.0-rc.2",
"mongoose": "^6.3.5",
"morgan": "~1.9.1",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"qrcode": "^1.5.0",
"react-alert": "^7.0.3",
"react-alert-template-basic": "^1.0.2",
"socket.io": "^4.5.1",
"stripe": "^9.6.0",
"tailwind": "^2.2.0",
"twilio": "^3.77.2"
},
"devDependencies": {
"autoprefixer": "^10.4.7",
"jest": "^28.1.0",
"postcss": "^8.4.14",
"tailwindcss": "^3.0.24"
}
}