-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 1.95 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
86
87
{
"name": "web",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"dev": "concurrently \"npm run serve\" \"npm run studio\"",
"build": "vue-cli-service build",
"studio": "cd studio && npm run dev",
"now-dev": "npm run dev"
},
"engines": {
"node": "12.x"
},
"dependencies": {
"@sanity/image-url": "^0.140.15",
"@sanity/client": "^0.147.3",
"axios": "^0.19.0",
"core-js": "^3.5.0",
"lodash": "^4.17.15",
"micro": "^9.3.4",
"micro-cors": "^0.1.1",
"micro-query": "^0.3.0",
"nanoid": "^2.1.8",
"vue": "^2.6.11",
"vue-qrcode-reader": "^2.1.1",
"vue-router": "^3.1.3",
"vue2-touch-events": "^2.1.0",
"vuex": "^3.1.2",
"vuex-persist": "^2.2.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.1.1",
"@vue/cli-plugin-eslint": "^4.1.1",
"@vue/cli-plugin-router": "^4.1.1",
"@vue/cli-plugin-vuex": "^4.1.1",
"@vue/cli-service": "^4.1.1",
"@vue/eslint-config-prettier": "^6.0.0",
"babel-eslint": "^10.0.3",
"concurrently": "^5.0.2",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-vue": "^6.0.1",
"lint-staged": "^9.5.0",
"node-sass": "^4.13.0",
"prettier": "^1.19.1",
"sass-loader": "^8.0.0",
"vue-template-compiler": "^2.6.11"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/recommended",
"@vue/prettier"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {
"vue/require-prop-types": 1,
"vue/attributes-order": 1,
"vue/object-curly-spacing": 1,
"no-console": 1
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue}": [
"vue-cli-service lint",
"git add"
]
}
}