forked from Quantumlyy/template-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.59 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
{
"name": "--name--",
"description": "--description--",
"version": "1.0.0",
"main": "dist/index.js",
"author": "QuantumlyTangled <yo@quantumlytangled.com> (https://quantumlytangled.com)",
"license": "MIT",
"scripts": {
"start": "node dist/index.js",
"dev": "yarn build && yarn start",
"lint": "eslint src --ext ts --fix",
"update": "yarn upgrade-interactive --latest",
"build": "tsc -b src",
"clean": "tsc -b src --clean",
"watch": "tsc -b src -w",
"test": "jest",
"test:coverage": "jest --coverage",
"sversion": "yarn standard-version",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@jest/types": "^26.6.2",
"@quantumly/eslint-config": "^1.1.0",
"@types/jest": "^26.0.20",
"@types/module-alias": "^2.0.0",
"@types/node": "^14.14.25",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.19.0",
"husky": "^5.0.9",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"lint-staged": "^10.5.4",
"pinst": "^2.1.4",
"standard-version": "^9.1.0",
"ts-jest": "^26.5.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.4"
},
"engines": {
"node": ">=14",
"npm": ">=6"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.ts": [
"eslint --fix --ext ts"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}