-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
67 lines (67 loc) · 1.71 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": "enamel",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit",
"test:e2e": "vue-cli-service test:e2e"
},
"dependencies": {
"apollo-cache-inmemory": "1.2.5",
"apollo-cache-persist": "0.1.1",
"apollo-client": "2.3.5",
"apollo-link": "1.2.2",
"apollo-link-error": "1.1.0",
"apollo-link-http": "1.5.4",
"apollo-link-ws": "^1.0.8",
"apollo-utilities": "^1.0.17",
"element-ui": "2.4.3",
"emoji-mart-vue": "^2.6.6",
"graphql": "0.13.2",
"graphql-tag": "2.9.2",
"moment": "2.22.2",
"register-service-worker": "^1.0.0",
"shortid": "2.2.8",
"subscriptions-transport-ws": "^0.9.14",
"vee-validate": "^2.1.0-beta.2",
"vue": "^2.5.17",
"vue-analytics": "^5.12.3",
"vue-apollo": "3.0.0-beta.19",
"vue-linkify": "^1.0.1",
"vue-router": "^3.0.1",
"vuedraggable": "^2.16.0",
"vuex": "^3.0.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.0.3",
"@vue/cli-plugin-e2e-cypress": "^3.0.3",
"@vue/cli-plugin-eslint": "^3.0.3",
"@vue/cli-plugin-pwa": "^3.0.3",
"@vue/cli-plugin-unit-mocha": "^3.0.3",
"@vue/cli-service": "^3.0.3",
"@vue/test-utils": "^1.0.0-beta.20",
"chai": "^4.1.2",
"lint-staged": "^6.0.0",
"node-sass": "^4.9.0",
"sass-loader": "^7.0.1",
"vue-template-compiler": "^2.5.17"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 10"
],
"lint-staged": {
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
}
}