-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 717 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "archittettura-software-nodejs",
"version": "1.0.0",
"description": "",
"license": "ISC",
"author": "",
"type": "commonjs",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "concurrently \"node --watch backend/src/index.js\" \"npm --prefix frontend run dev\"",
"start_pm2": "pm2 start backend/src/index.js --name backend --time",
"start_pm2_cluster": "pm2 start backend/src/index.js --name cluster --time -i max",
"loadheavy": "loadtest -n 1000 -c 10 http://localhost:3000/stresstest"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"dependencies": {
"express": "^5.1.0",
"loadtest": "^8.2.0"
}
}