-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
36 lines (36 loc) · 1.27 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
{
"name": "itcorpo-api-express",
"description": "Professional trainings on JavaScript, TypeScript and many more...",
"private": true,
"author": {
"name": "Tomasz Ducin",
"email": "tomasz@ducin.it",
"url": "http://ducin.it"
},
"scripts": {
"__base": "json-server svc/__base/db.json -p 3010",
"svc-public": "babel-node svc/public/server -- -p 3010",
"svc-employees-script": "node ./svc/employees/server -p 3011",
"svc-employees": "json-server svc/employees/db.json -p 3011 --static ./svc/employees",
"svc-projects": "json-server svc/projects/db.json -p 3012 --static ./svc/projects",
"svc-benefits": "json-server svc/benefits/db.json -p 3013 --static ./svc/benefits",
"svc-geo": "json-server svc/geo/db.json -p 3014 --static ./svc/geo",
"svc-skills": "json-server svc/skills/db.json -p 3015 --static ./svc/skills",
"all": "node run-all"
},
"dependencies": {
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"@types/node": "^13.11.1",
"axios": "^0.19.2",
"chalk": "^4.0.0",
"csvtojson": "^2.0.10",
"express": "^4.17.1",
"js-yaml": "^3.13.1",
"json-server": "^0.16.1",
"npm-run": "^5.0.1",
"xml2js": "^0.4.23"
}
}