-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 868 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 868 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
{
"name": "ecza",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --detectOpenHandles --forceExit",
"dev": "NODE_ENV=development nodemon src/index.js",
"start": "NODE_ENV=production node src/index.js",
"migrate": "node-pg-migrate"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.3.2",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"helmet": "^6.0.1",
"mssql": "^9.1.1",
"node-pg-migrate": "^6.2.2",
"postgres": "^3.3.3",
"sinon": "^15.0.1"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"jest": "^29.4.2",
"nodemon": "^2.0.20",
"superagent": "^8.0.9",
"supertest": "^6.3.3"
}
}