-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.11 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
{
"name": "verdatas-generator",
"version": "1.0.0",
"main": "src/index.ts",
"scripts": {
"start:watch": "nodemon --ignore ./output src/index.ts data/static",
"start:generate": "rimraf ./output && ts-node src/index.ts",
"sub:install": "npm i --prefix output/verdatas-graph",
"sub:start": "npm run dev --prefix output/verdatas-graph",
"start:complete": "npm run start:generate && npm run sub:install && npm run sub:start",
"validate": "ts-node ./validate.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/mustache": "^4.2.2",
"@types/supertest": "^2.0.12",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.5.3",
"typescript": "^5.1.3"
},
"dependencies": {
"ajv": "^8.12.0",
"joi": "^17.9.2",
"mustache": "^4.2.0",
"rimraf": "^5.0.1",
"ts-morph": "^19.0.0",
"ts-tree-structure": "^1.0.2"
}
}