-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.75 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "tkc-node-cli-template",
"private": true,
"main": "index.js",
"scripts": {
"dev": "webpack --config ./config/webpack.dev.js --watch",
"prod": "webpack --config ./config/webpack.prod.js",
"lint": "eslint src -c .eslintrc.json --ext tsx,ts; exit 0",
"lint:fix": "eslint src -c .eslintrc.json --ext tsx,ts --fix; exit 0 ",
"test": "jest --coverage"
},
"bin": {
"tkc-template": "./dist/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/takashi1coq/tkc-node-cli-template.git"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testMatch": [
"**/test/**/*.test.ts"
],
"modulePaths": [
"<rootDir>"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/takashi1coq/tkc-node-cli-template/issues"
},
"homepage": "https://github.com/takashi1coq/tkc-node-cli-template#readme",
"devDependencies": {
"@types/jest": "^25.1.3",
"@types/node": "^13.7.2",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-import-resolver-webpack": "^0.12.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"ts-jest": "^25.2.1",
"ts-loader": "^6.2.1",
"typescript": "^3.7.5",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"enquirer": "^2.3.4"
}
}