-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
48 lines (48 loc) · 1.48 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
{
"name": "lyric",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"lint:prettier": "prettier-eslint-check \"**/*.{js,jsx,json,ts,tsx,vue,md}\"",
"format": "prettier-eslint \"**/*.{js,jsx,json,ts,tsx,vue,md}\" --write"
},
"dependencies": {
"element-ui": "^2.4.6",
"vue": "^2.5.17",
"vue-class-component": "^6.0.0",
"vue-emotion": "^0.4.2",
"vue-property-decorator": "^7.0.0",
"vue-router": "^3.0.1",
"vuex": "^3.0.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.0.1",
"@vue/cli-plugin-eslint": "^3.0.1",
"@vue/cli-plugin-typescript": "^3.0.1",
"@vue/cli-service": "^3.0.1",
"@vue/eslint-config-airbnb": "^3.0.1",
"@vue/eslint-config-typescript": "^3.0.1",
"babel-plugin-component": "git://github.com/u3u/babel-plugin-component.git",
"babel-plugin-emotion": "^9.2.8",
"babel-plugin-jsx-v-model": "^2.0.3",
"emotion": "^9.2.8",
"lint-staged": "^7.2.2",
"prettier": "^1.14.2",
"prettier-eslint-check": "^1.0.1",
"prettier-eslint-cli": "^4.7.1",
"typescript": "^3.0.0",
"vue-jsx-hot-loader": "^1.4.0",
"vue-template-compiler": "^2.5.17",
"vue-tsx-support": "^2.1.1"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": "vue-cli-service lint --no-fix",
"*.{js,jsx,json,ts,tsx,vue,md}": "prettier-eslint-check"
}
}