-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.14 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": "jobservatory_express",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index",
"server": "nodemon index",
"test": "nyc --check-coverage --lines 85 mocha --recursive tests",
"client": "npm start --prefix ./../jobservatory",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"linter": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"engines": {
"node": "12.x"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bluebird": "^3.7.2",
"colors": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-rate-limit": "^5.3.0",
"moment": "^2.29.1",
"mongoose": "^5.13.3",
"morgan": "^1.10.0",
"redis": "^3.1.2",
"sinon": "^11.1.2"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-exclude": "^2.0.3",
"concurrently": "^6.2.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",
"mocha": "^9.1.0",
"nodemon": "^2.0.12",
"nyc": "^15.1.0",
"supertest": "^6.1.6"
},
"proxy": "http://localhost:5000"
}