generated from hi-imcodeman/typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.29 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
{
"name": "leetcode-ts",
"version": "1.0.0",
"main": "build/index.js",
"repository": "https://github.com/hi-imcodeman/leetcode-ts.git",
"author": "Asraf Ali <asraf.cse@gmail.com>",
"license": "MIT",
"scripts": {
"build": "tsc",
"compile": "webpack",
"docs": "typedoc",
"test": "jest",
"coverage": "jest --coverage",
"lint": "eslint . --ext .ts",
"gpr-setup": "node ./scripts/setup-gpr.js",
"package-upgrade": "yarn upgrade-interactive",
"upgrade-latest": "yarn upgrade --latest"
},
"lint-staged": {
"src/**/*.{ts,tsx,js,jsx}": [
"yarn lint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.191",
"@types/node": "^14.14.35",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"copy-webpack-plugin": "^7.0.0",
"eslint": "^7.19.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"ts-jest": "^26.5.0",
"ts-loader": "^8.0.15",
"typedoc": "^0.20.23",
"typescript": "^4.1.3",
"webpack": "^5.21.1",
"webpack-cli": "^4.5.0"
},
"dependencies": {
"ascii-binary-tree": "^0.0.1",
"lodash": "^4.17.21"
}
}