-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.17 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
{
"name": "ts_demo1",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "tsc && node dist/app",
"build": "rm -rf ./dist && tsc",
"restart": "node ./dist/app",
"clean": "rm -rf ./dist",
"windows_clean": "rmdir /s /q dist",
"generate-interfaces": "tsc generateInterfacesFromConfig.ts && tsc ../ts_demo1/src/templateGenerator.ts && node generateInterfacesFromConfig.js"
},
"bin": {
"schemats": "bin/schemats.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@ticatec/node-common-library": "^1.5.1",
"@types/express": "^4.17.21",
"@types/handlebars": "^4.1.0",
"@types/node": "^20.12.5",
"express": "^4.19.2",
"fs": "^0.0.1-security",
"handlebars": "^4.7.8",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"pg": "^8.11.5",
"typescript": "^5.4.4",
"typescript-formatter": "^7.2.2",
"yaml": "^2.4.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.17.0",
"@types/pg-promise": "^5.4.3",
"@types/yargs": "^17.0.32"
}
}