-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 883 Bytes
/
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
{
"name": "@template/typenexus",
"private": true,
"type": "module",
"version": "1.0.0",
"description": "TypeNexus Example.",
"scripts": {
"start": "npm run build && node dist/main.js",
"dev": "nodemon --inspect dist/main.js",
"watch": "tsbb watch",
"build": "tsbb build --bail",
"test": "tsbb test",
"coverage": "tsbb test --coverage --bail"
},
"repository": {
"type": "git",
"url": "https://github.com/jaywcjlove/tsbb/tree/master/example/typenexus"
},
"jest": {
"transformIgnorePatterns": [
"<rootDir>/node_modules/?!(.*)"
]
},
"keywords": [],
"license": "MIT",
"dependencies": {
"typenexus": "0.5.6"
},
"devDependencies": {
"@types/supertest": "~2.0.12",
"nodemon": "^2.0.20",
"supertest": "^6.3.3",
"supertest-session": "^5.0.0",
"ts-node": "^10.9.1",
"tsbb": "4.4.1"
}
}