-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.17 KB
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
{
"name": "node_ts_starter",
"version": "1.0.0",
"description": "```zsh # init project $ yarn init",
"main": "dist/index.js",
"scripts": {
"start": "node ./dist/index.js || true",
"lint": "tslint -p tsconfig.json",
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
"build": "tsc -p tsconfig.json",
"clean": "rm -rf dist/*",
"devjs": "nodemon ./dist/index.js",
"dev": "ts-node ./src/index.ts",
"dev:watch": "nodemon",
"test": "CONFIG_MODE=test jest",
"clean-jest": "jest --clearCache"
},
"author": "koji kanao",
"license": "MIT",
"keywords": [
"Typescript",
"nodejs",
"starterkit"
],
"dependencies": {
"@types/body-parser": "^1.19.6",
"@types/express": "^4.17.25",
"@types/jest": "^25.2.3",
"@types/node": "^14.18.63",
"@types/supertest": "^2.0.16",
"body-parser": "^1.20.4",
"express": "^4.22.1",
"jest": "^26.6.3",
"supertest": "^4.0.2",
"ts-jest": "^26.5.6",
"ts-node": "^10.9.2",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^5.9.3"
},
"devDependencies": {
"nodemon": "^2.0.22"
}
}