-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1 KB
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
{
"name": "nodejs-server-exercise",
"version": "1.0.0",
"description": "EV Onboarding Exercise",
"main": "index.js",
"scripts": {
"start": "node node/app.js",
"test": "jest --config ./jest.config.json --silent --forceExit",
"test:watch": "npm run test -- --watchAll --silent --forceExit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ev-rvs/nodejs-server-exercise.git"
},
"keywords": [
"EV Onboarding Exercise"
],
"author": "RVS",
"license": "MIT",
"bugs": {
"url": "https://github.com/ev-rvs/nodejs-server-exercise/issues"
},
"homepage": "https://github.com/ev-rvs/nodejs-server-exercise#readme",
"dependencies": {
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"fs": "0.0.1-security",
"helmet": "^4.4.1",
"morgan": "^1.10.0",
"path": "^0.12.7",
"pg": "^8.5.1",
"sequelize": "^6.5.0"
},
"devDependencies": {
"dotenv": "^8.2.0",
"jest": "^26.6.3",
"supertest": "^6.1.3"
}
}