-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 857 Bytes
/
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
{
"name": "bonus-server",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "jest --verbose --runInBand --testLocationInResults --setupFiles dotenv/config",
"test:watch": "npm run test -- --watch",
"start": "node -r dotenv/config server.js",
"start:watch": "nodemon -r dotenv/config server.js"
},
"jest": {
"testEnvironment": "node"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/eslint-parser": "^7.12.16",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@types/jest": "^26.0.20",
"@types/pg": "^7.14.9",
"eslint": "^7.20.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"supertest": "^6.1.3"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"pg": "^8.5.1"
}
}