-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
67 lines (67 loc) · 2.07 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
{
"name": "prettier-chrome",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve --open",
"build": "vue-cli-service build && bili",
"lint": "vue-cli-service lint",
"lint:prettier": "prettier-eslint-check \"**/*.{ts,tsx,js,jsx,json,scss,md}\"",
"format": "prettier-eslint \"**/*.{ts,tsx,js,jsx,json,scss,md}\" --write",
"watch": "npm run watch:vue & npm run watch:bili",
"watch:vue": "vue-cli-service build --watch",
"watch:bili": "bili --watch",
"contributors": "all-contributors",
"upgrade:prettier": "cp -R node_modules/prettier/ public/lib/prettier/"
},
"dependencies": {
"element-ui": "^2.5.4",
"prettier": "^1.16.4",
"vue": "^2.6.7",
"vue-class-component": "^7.0.1",
"vue-property-decorator": "^7.3.0",
"vue-router": "^3.0.2",
"vuex": "^3.1.0",
"vuex-class": "^0.3.1"
},
"devDependencies": {
"@types/chrome": "^0.0.81",
"@types/node": "^11.9.5",
"@types/prettier": "^1.16.1",
"@vue/cli-plugin-babel": "^3.4.1",
"@vue/cli-plugin-eslint": "^3.4.1",
"@vue/cli-plugin-typescript": "^3.4.1",
"@vue/cli-service": "^3.4.1",
"@vue/eslint-config-airbnb": "^4.0.0",
"@vue/eslint-config-typescript": "^4.0.0",
"all-contributors-cli": "^6.1.2",
"babel-plugin-emotion": "^9.2.11",
"babel-plugin-import": "^1.11.0",
"babel-plugin-jsx-v-model": "^2.0.3",
"bili": "4.4.0",
"emotion": "^10.0.7",
"eslint": "^5.14.1",
"eslint-plugin-vue": "^5.2.2",
"lint-staged": "^8.1.4",
"prettier-eslint-check": "^1.0.3",
"prettier-eslint-cli": "^4.7.1",
"rollup-plugin-typescript2": "^0.19.3",
"typescript": "~3.2.2",
"typescript-styled-plugin": "^0.14.0",
"vue-emotion": "^0.4.2",
"vue-template-compiler": "^2.6.7",
"vue-tsx-support": "^2.2.2"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": "vue-cli-service lint --no-fix",
"*.{ts,tsx,js,jsx,json,scss,md}": "prettier-eslint-check"
}
}