-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1005 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
35
36
37
38
39
{
"name": "behuman-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.1",
"@babel/plugin-syntax-class-properties": "^7.12.1",
"@types/jest": "^26.0.20",
"@types/pg": "^7.14.8",
"eslint": "^7.17.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"supertest": "^6.0.1"
},
"dependencies": {
"bcrypt": "^5.0.0",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.5",
"cookieparser": "^0.1.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"nodemailer": "^6.4.17",
"pg": "^8.5.1"
}
}