-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 793 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 793 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
{
"name": "esco-data-genertion",
"version": "1.0.0",
"description": "",
"scripts": {
"serve": "./scripts/serve.sh",
"build": "npm run build:occupations && npm run build:skills && npm run build:bisness-finland",
"build:skills": "ts-node src/build-skills.ts",
"build:occupations": "ts-node src/build-occupations.ts",
"build:bisness-finland": "ts-node src/build-business-finland-esco-occupations.ts",
"install-built-resources": "rimraf ../api/data/ && cp dist/* ../api/data/",
"install": "npm run build && npm run install-built-resources"
},
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^1.6.0",
"node-fetch": "^3.3.1",
"ts-node": "^10.9.1"
},
"devDependencies": {
"rimraf": "^5.0.5",
"typescript": "^5.2.2"
}
}