-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
72 lines (72 loc) · 1.97 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
{
"name": "@1stg/configs",
"version": "0.0.0",
"description": "Personal but Shareable Configurations for all 1stG.me projects.",
"repository": "[email protected]:1stG/configs.git",
"author": "JounQin <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"check": "run-p check:*",
"check:eslint": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"check:stylelint": "stylelint-config-prettier-check",
"check:tslint": "tslint-config-prettier-check ./tslint.json",
"lint": "run-p lint:*",
"lint:es": "cross-env PARSER_NO_WATCH=true eslint . --cache --ext js,jsx,md,mdx,ts,tsx,vue -f friendly",
"lint:style": "run-p lint:style:*",
"lint:style:css": "stylelint --cache --config stylelint.common.js tests/*.{css,less}",
"lint:style:scss": "stylelint --cache tests/*.{scss,vue}",
"lint:ts": "tslint -p . -t stylish",
"lint:tsc": "tsc",
"test": "jest"
},
"devDependencies": {
"@angular/core": "^8.2.12",
"@babel/core": "^7.6.4",
"@types/jest": "^24.0.21",
"@types/node": "^12.12.1",
"@types/react": "^16.9.11",
"@types/unist": "^2.0.3",
"browserslist": "^4.7.2",
"eslint": "^6.6.0",
"husky": "^3.0.9",
"jest": "^24.9.0",
"lerna": "^3.18.3",
"lint-staged": "^9.4.2",
"npm-run-all": "^4.1.5",
"postcss": "^7.0.21",
"prettier": "^1.18.2",
"react": "^16.11.0",
"stylelint": "^11.1.1",
"ts-jest": "^24.1.0",
"tslib": "^1.10.0",
"tslint": "^5.20.0",
"typescript": "^3.6.4",
"vue": "^2.6.10"
},
"commitlint": {
"extends": [
"@1stg"
]
},
"eslintIgnore": [
"lib",
"node_modules",
"CHANGELOG.md",
"!/.*.js"
],
"prettier": "@1stg/prettier-config",
"stylelint": {
"extends": [
"@1stg/stylelint-config/scss",
"@1stg/stylelint-config/modules"
],
"ignoreFiles": "*.less",
"rules": {
"plugin/no-unsupported-browser-features": null
}
}
}