forked from upgreat-readable/pku
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.53 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "readable-pku",
"version": "1.3.1",
"description": "",
"directories": {
"docs": "docs"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"pretty": "prettier --write .",
"commit": "git-cz",
"lint:code": "eslint \"./**/*.{ts,tsx}\"",
"release": "standard-version",
"release-fix": "./.fix_env_release"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:upgreat-readable/pku.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/upgreat-readable/pku/issues"
},
"homepage": "https://github.com/upgreat-readable/pku#readme",
"dependencies": {
"@types/node-ipc": "^9.1.3",
"@types/socket.io": "^2.1.11",
"@types/socket.io-client": "^1.4.33",
"@upgreat-readable/criteria": "^1.1.0",
"@upgreat-readable/psr": "^1.1.3",
"commander": "^6.1.0",
"commander-ts": "^0.1.5",
"fs": "0.0.1-security",
"http": "0.0.1-security",
"node-ipc": "^9.1.1",
"socket.io": "^2.3.0",
"typescript": "^4.0.3",
"winston": "^3.3.3"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"commitizen": "^4.2.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.10.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.12.0",
"eslint-import-resolver-node": "^0.3.4",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-import-helpers": "^1.1.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"standard-version": "^9.0.0",
"stylelint": "^13.7.2",
"stylelint-config-recess-order": "^2.1.0",
"stylelint-config-recommended": "^3.0.0",
"stylelint-order": "^4.1.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.{tsx,ts,js,jsx,scss,css,js,json,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}