-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "typescript-node-scripts",
"version": "5.1.0",
"description": "Create Node.js apps based on TypeScript with zero-configuration.",
"main": "bin/typescript-node-scripts.js",
"scripts": {
"watch": "tsc -p . --watch",
"compile": "tsc -p .",
"test": "node bin/typescript-node-scripts.js test",
"start": "node bin/typescript-node-scripts.js start",
"build": "node bin/typescript-node-scripts.js build",
"initApp": "node bin/typescript-node-scripts.js create",
"e2e:ci": "./tests/e2e.sh",
"e2e:local": "docker build -t tns-docker . && docker run tns-docker",
"lint": "eslint --ext .js --ext .ts --ext .jsx --ext .tsx src",
"commit": "git-cz",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"prepublishOnly": "yarn compile",
"prepare": "husky install"
},
"bin": {
"typescript-node-scripts": "./bin/typescript-node-scripts.js"
},
"keywords": [],
"author": "Liang Chun Wong",
"repository": "https://github.com/liangchunn/typescript-node-scripts",
"license": "MIT",
"dependencies": {
"@babel/code-frame": "7.16.7",
"@babel/core": "7.16.10",
"@babel/eslint-parser": "^7.16.5",
"@babel/preset-env": "7.16.11",
"@typescript-eslint/eslint-plugin": "5.10.0",
"@typescript-eslint/parser": "5.10.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "27.4.6",
"babel-loader": "8.2.3",
"case-sensitive-paths-webpack-plugin": "2.4.0",
"chalk": "4.1.2",
"clean-webpack-plugin": "4.0.0",
"eslint": "8.7.0",
"eslint-plugin-import": "2.25.4",
"eslint-webpack-plugin": "3.1.1",
"filesize": "8.0.7",
"fork-ts-checker-webpack-plugin": "6.5.0",
"fs-extra": "10.0.0",
"jest": "27.4.7",
"pstree.remy": "1.1.8",
"strip-ansi": "7.0.1",
"text-table": "0.2.0",
"ts-jest": "27.1.3",
"ts-loader": "9.2.6",
"tsconfig-paths-webpack-plugin": "3.5.2",
"tslib": "^2.3.1",
"webpack": "5.66.0",
"webpack-merge": "5.8.0",
"webpack-node-externals": "3.0.0"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@types/babel-code-frame": "^6.20.5",
"@types/case-sensitive-paths-webpack-plugin": "^2.1.6",
"@types/eslint": "^8.4.0",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.4.0",
"@types/node": "^16.11.0",
"@types/text-table": "^0.2.2",
"@types/webpack-merge": "^5.0.0",
"@types/webpack-node-externals": "^2.5.3",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.2.2",
"cz-conventional-changelog": "^3.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.2.1",
"prettier": "^2.5.1",
"typescript": "4.5.4"
},
"peerDependencies": {
"typescript": ">=3.3.1 <=4.5"
},
"engines": {
"node": ">=12"
},
"lint-staged": {
"*.ts": "prettier --write"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}