-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.78 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
{
"name": "vue-curated-client",
"description": "Web app displaying curated vue packages",
"version": "1.0.0",
"author": "Guillaume Chau <guillaume.b.chau@gmail.com>",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --inline --hot",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"start": "serve -p 80 -s",
"deploy": "bash deploy.sh",
"analyze": "cross-env ANALYZE=on npm run build"
},
"engines": {
"node": "6.9.1"
},
"dependencies": {
"apollo-client": "^1.0.4",
"array-flatten": "^2.1.1",
"buffer-indexof": "^1.1.0",
"emojione": "^3.0.3",
"marked": "^0.3.6",
"moment": "^2.18.1",
"numeral": "^2.0.6",
"serve": "^5.1.4",
"style-loader": "^0.18.2",
"tether-drop": "^1.4.2",
"v-tooltip": "^1.1.6",
"vue": "^2.3.2",
"vue-apollo": "^2.1.0-beta.7",
"vue-resize": "^0.1.2",
"vue-router": "^2.5.2",
"vuex": "^2.3.1"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^5.0.1",
"css-loader": "^0.28.0",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-friendly-formatter": "^2.0.7",
"eslint-loader": "^1.7.1",
"eslint-plugin-html": "^2.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"file-loader": "^0.11.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"vue-loader": "^12.0.2",
"vue-template-compiler": "^2.3.2",
"webpack": "^3.2.0",
"webpack-bundle-analyzer": "^2.8.2",
"webpack-dev-server": "^2.4.4"
}
}