-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.31 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
{
"name": "example-ts-auto-guard",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack --mode=production",
"start": "webpack serve --history-api-fallback",
"lint": "eslint src --ext js,ts,tsx",
"lint:fix": "eslint src --ext js,ts,tsx --fix",
"generate-guards": "ts-auto-guard --paths=./src/**/*.ts --paths=./src/*.ts && yarn lint:fix"
},
"pre-commit": "generate-guards",
"repository": {
"type": "git",
"url": "git+https://github.com/Dusty4848/example-ts-auto-guard.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Dusty4848/example-ts-auto-guard/issues"
},
"homepage": "https://github.com/Dusty4848/example-ts-auto-guard#readme",
"devDependencies": {
"@types/node": "16.11.12",
"@types/webpack": "5.28.0",
"@typescript-eslint/eslint-plugin": "5.6.0",
"@typescript-eslint/parser": "5.6.0",
"concurrently": "6.4.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.4",
"pre-commit": "1.2.2",
"prettier": "2.5.1",
"ts-loader": "9.2.6",
"typescript": "4.5.2",
"webpack": "5.65.0",
"webpack-cli": "4.9.1",
"webpack-dev-server": "4.6.0"
},
"dependencies": {
"eslint": "8.4.1"
}
}