-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.16 KB
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
{
"name": "maddening-algorithmic",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint:ts": "tslint -c tslint.json 'src/**/*.ts'",
"lint:fixts": "tslint -c tslint.json 'src/**/*.ts' --fix",
"prettier": "prettier -c --write ./src",
"commit": "git add . && git-cz",
"build": "rm -rf ./dist && tsc",
"precommit": "lint-staged",
"prepare": "husky install",
"execute": "ts-node",
"test": "vitest --run",
"coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git@github.com:Zero-Rock/LeetCode.git"
},
"author": "Zero",
"license": "ISC",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{ts,json,md}": "prettier --write"
},
"dependencies": {
"typescript": "^5.2.2"
},
"devDependencies": {
"@vitest/coverage-istanbul": "^0.34.1",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^3.0.1",
"ts-lint": "^4.5.1",
"ts-node": "^10.9.1",
"vite": "^6.1.6",
"vitest": "^2.1.6"
}
}