-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 963 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 963 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": "back-end",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "cross-env DB_ENV=testing jest --watchAll",
"start": "node index.js",
"server": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aedocoding/node-backend-template"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/aedocoding/node-backend-template/issues"
},
"homepage": "https://github.com/aedocoding/node-backend-template#readme",
"dependencies": {
"bcryptjs": "^3.0.3",
"cors": "^2.8.6",
"cross-env": "^10.1.0",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.3",
"knex": "^3.2.9",
"knex-cleaner": "^1.3.1",
"pg": "^8.20.0",
"sqlite3": "^6.0.1"
},
"devDependencies": {
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"supertest": "^7.1.0"
}
}