-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.96 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
{
"name": "soc-common",
"version": "1.0.0",
"description": "a collection of common utilily functions",
"repository": "git@github.com:Sociosarbis/soc-common.git",
"author": "Sociosarbis <136657577@qq.com>",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.12.7",
"@babel/preset-typescript": "^7.14.5",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/bluebird": "^3.5.33",
"@types/d3": "^5.16.3",
"@types/jest": "^26.0.15",
"@types/mysql": "^2.15.15",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"eslint": "^6.8.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-vue": "^6.2.2",
"husky": "^4.2.3",
"jest": "^26.6.3",
"lint-staged": "^10.0.9",
"prettier": "^2.0.2",
"promises-aplus-tests": "^2.1.2",
"stylelint": "^13.2.1",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-recess-order": "^2.0.4",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.0.0",
"stylelint-scss": "^3.16.0",
"vue": "^2.6.12",
"vue-property-decorator": "^9.1.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"scripts": {
"test:promise": "ts-node src/js/task/AplusPromise.spec.ts"
},
"lint-staged": {
"src/**/*.{js,ts,vue}": [
"eslint"
],
"src/**/*.{html,vue,css,sass,scss}": [
"stylelint"
]
},
"dependencies": {
"@vue/composition-api": "^1.4.0",
"bluebird": "^3.7.2",
"d3": "^6.2.0",
"execa": "^5.1.1",
"mysql": "^2.18.1",
"postcss": "^8.1.2",
"postcss-scss": "^3.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.3",
"vue-class-component": "^7.2.6",
"vue-demi": "^0.12.1"
}
}