-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.62 KB
/
package.json
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
41
42
43
44
45
46
{
"name": "virtual_device_pool_manager",
"version": "1.0.0",
"description": "NDS HF Applikationsentwickler Diplomarbeit 2023 von Marco Rensch",
"main": "serve.mjs",
"scripts": {
"test": "cd server && npm run test",
"install_server": "cd server && npm install",
"install_client": "cd client && npm install",
"install_setup": "cd setup && npm install",
"postinstall": "conc -n=\"setup,server,client\" -c=\"yellow,green,blue\" \"cd setup && npm install\" \"cd server && npm install\" \"cd client && npm install\"",
"devStart": "conc -n=\"server,client\" -c=\"green,blue\" \"cd server && npm run devStart\" \"cd client && npm run serve\"",
"setup": "cd setup && npm run setup",
"start": "conc -n=\"server,client\" -c=\"green,blue\" \"cd server && cross-env USE_SSL=false npm run start\" \"node serve.mjs\"",
"create-certificates": "cd setup && npm run create-certificates",
"build": "cd client && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcorensch/diplomarbeit_virtual_device_pool_manager.git"
},
"keywords": [
"diplom",
"nds",
"app",
"virtual",
"device",
"pool",
"manager",
"msisdn",
"list"
],
"author": "Marco Rensch",
"license": "MIT",
"bugs": {
"url": "https://github.com/marcorensch/diplomarbeit_virtual_device_pool_manager/issues"
},
"homepage": "https://github.com/marcorensch/diplomarbeit_virtual_device_pool_manager#readme",
"dependencies": {
"chalk": "^5.2.0",
"concurrently": "^8.0.1",
"cross-env": "^7.0.3",
"express": "^4.18.2",
"rate-limiter-flexible": "^2.4.1"
}
}