-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 854 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 854 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
{
"name": "backend-v2",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/devdesk-queue-lambda/backend-v2.git",
"author": "joerlop <jj.erlich155@gmail.com>",
"license": "MIT",
"scripts": {
"start": "node index.js",
"server": "nodemon index.js",
"test": "cross-env DB_ENV=testing jest --watch --verbose"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"connect-session-knex": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-session": "^1.16.2",
"helmet": "^3.18.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.17.6",
"nodemon": "^1.19.1",
"pg": "^7.11.0",
"sqlite3": "^4.0.9"
},
"jest": {
"testEnvironment": "node"
},
"devDependencies": {
"cross-env": "^5.2.0",
"jest": "^24.8.0",
"supertest": "^4.0.2"
}
}