-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.11 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
{
"name": "template",
"version": "1.0.0",
"description": "Template Repository for TypeScript & Node.js Application - with strictest possible code quality",
"main": "dist/main.cjs",
"type": "module",
"scripts": {
"build": "webpack",
"dev": "node --loader ts-node/esm src/main.ts",
"prepare": "husky install",
"start": "node dist/main.cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/v-ut-d/template.git"
},
"author": "cm-ayf <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/v-ut-d/template/issues"
},
"homepage": "https://github.com/v-ut-d/template#readme",
"devDependencies": {
"@tsconfig/strictest": "^1.0.1",
"@types/node": "^18.6.2",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}