-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.31 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
{
"name": "svr",
"version": "1.0.0",
"description": "",
"engines": {
"node": "^14.19.1",
"npm": "6.10.1"
},
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev:be": "nodemon --quiet",
"dev:fe": "cd fe && yarn start",
"seed": "node seed",
"test": "mocha tests/**/*.test.js --timeout 10000",
"test-watch": "nodemon --exec yarn test",
"heroku-postbuild": "node postbuild"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"ejs": "^3.1.5",
"express": "^4.17.1",
"google-auth-library": "^8.1.1",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"mongoose": "^5.8.1",
"mongoose-lean-getters": "^0.3.0",
"mongoose-paginate-v2": "^1.4.2",
"node-emoji": "^1.10.0",
"nodemailer": "^6.7.7",
"redis": "^4.1.0",
"shelljs": "^0.8.4"
},
"devDependencies": {
"cors": "^2.8.5",
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"eslint": "^8.12.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^2.5.0",
"mocha": "^9.0.2",
"nodemon": "^2.0.2"
}
}