-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·49 lines (49 loc) · 1.4 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": "job_vista",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"lint": "./node_modules/.bin/eslint",
"check-lint": "lint [0-9]*.js",
"start": "node api/index.js",
"dev": "nodemon api/index.js",
"test": "./node_modules/.bin/mocha"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.2",
"bull": "^3.16.0",
"chai-http": "^4.3.0",
"connect-flash": "^0.1.1",
"connect-redis": "^7.1.0",
"cookie": "^0.5.0",
"cookie-parser": "^1.4.6",
"dotenv": "^16.4.5",
"ejs": "^3.1.9",
"express": "^4.17.1",
"express-fileupload": "^1.4.1",
"express-session": "^1.17.3",
"image-thumbnail": "^1.0.10",
"ioredis": "^5.3.2",
"mime-types": "^2.1.27",
"mongodb": "^3.5.9",
"node-fetch": "^2.6.1",
"sha1": "^1.1.1",
"uuid": "^8.2.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^6.4.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.17.0",
"mocha": "^6.2.2",
"nodemon": "^2.0.2",
"request": "^2.88.0",
"sinon": "^7.5.0"
}
}