This repository has been archived by the owner on May 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.48 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
{
"name": "scunt-2021",
"version": "1.0.0",
"description": "",
"main": "server.js",
"repository": "scunt3.0",
"scripts": {
"start": "nodemon server.js",
"server": "npm run client-build && nodemon server.js",
"clean": "rm -rf node_modules",
"start-client": "cd client && npm run start",
"dev": "cd client && npm run build && cd .. && nodemon server.js",
"heroku-postbuild": "cd client && npm install && npm run build",
"client-clean": "cd client && rm -rf node_modules && rm -rf build",
"client-build": "cd client && npm install && npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"concurrently": "^5.2.0",
"connect-flash": "^0.1.1",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"email-validator": "^2.0.4",
"express": "^4.17.1",
"express-http-to-https": "^1.1.4",
"express-session": "^1.17.1",
"googleapis": "^76.0.0",
"heroku": "^7.42.1",
"mongoose": "^5.12.13",
"nodemailer": "^6.6.1",
"nodemon": "^2.0.4",
"openapi-types": "^9.0.3",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"pdfmake": "^0.1.71",
"query-string": "^6.13.1",
"rand-token": "^1.0.1",
"socket.io": "^2.3.0",
"stripe": "^8.60.0",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.1.6",
"tsparticles": "^1.33.3"
},
"devDependencies": {
"jest": "26.6.0",
"node-sass": "^4.14.1",
"node-sass-import": "^2.0.1",
"supertest": "^6.1.3"
}
}