-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 970 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 970 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
{
"name": "npm",
"version": "1.0.0",
"description": "Database design",
"main": "server.js",
"scripts": {
"test": "jest",
"server-dev": "nodemon server.js",
"preroute": "sudo iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 80 -j REDIRECT --to-port 3000",
"deploy": "npm run preroute && pm2 start server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lildb/products-system-design.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/lildb/products-system-design/issues"
},
"homepage": "https://github.com/lildb/products-system-design#readme",
"dependencies": {
"csv-parser": "^3.0.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"fast-csv": "^4.3.6",
"fs": "^0.0.1-security",
"k6": "^0.0.0",
"nodemon": "^2.0.15",
"pg": "^8.7.1"
},
"devDependencies": {
"jest": "^27.3.1",
"msw": "^0.35.0",
"supertest": "^6.1.6"
}
}