-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 988 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 988 Bytes
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": "backend",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:buildpartyplanner/backend.git",
"author": "Jonathan Dorety <kyullog@gmail.com>",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"cloudinary": "^1.14.0",
"connect-session-knex": "^1.4.0",
"cors": "^2.8.5",
"datauri": "^2.0.0",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"express-session": "^1.16.1",
"helmet": "^3.16.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.16.5",
"morgan": "^1.9.1",
"multer": "^1.4.1",
"pg": "^7.10.0",
"sqlite3": "^4.0.6"
},
"devDependencies": {
"cross-env": "^5.2.0",
"jest": "^24.7.1",
"nodemon": "^1.18.11",
"supertest": "^4.0.2"
},
"scripts": {
"start": "node index.js",
"server": "nodemon index.js",
"test": "jest --watch --verbose",
"test-db": "cross-env DB_ENV=testing jest --watch --verbose"
},
"jest": {
"testEnvironment": "node"
}
}