-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
50 lines (50 loc) · 1.38 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
47
48
49
50
{
"name": "ets-log210-typescript-node-api",
"version": "1.0.1",
"description": "",
"main": "index.js",
"scripts": {
"startWithDoc": "npm run compile && npm run all_docs && node dist/index.js",
"start": "npm run compile && npm run copydata && node dist/index.js",
"test": "jest --colors --silent",
"watch": "jest --coverage --watchAll",
"all_docs": "npm run docs && npm run tplant && npm run copydata",
"docs": "apidoc -i src/routes/ -o dist/docs ",
"tplant": "tplant --input src/App.ts -A --output dist/docs/dcl.svg",
"compile": "tsc",
"copydata": "shx cp -R src/data dist/data"
},
"watch": {
"test": "{src,tests}/*.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/md5": "^2.3.5",
"@types/morgan": "^1.9.9",
"@types/multimap": "^1.1.4",
"@types/supertest": "^6.0.2",
"apidoc": "^1.2.0",
"debug": "^4.3.5",
"jest": "^29.7.0",
"jest-config": "^29.7.0",
"npm-watch": "^0.13.0",
"shx": "^0.3.4",
"supertest": "^7.0.0",
"tplant": "^3.1.0",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"express": "^4.19.2",
"md5": "^2.3.0",
"morgan": "^1.10.0",
"multimap": "^1.1.0",
"node-fetch": "^3.3.2"
}
}