-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·100 lines (100 loc) · 3.11 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·100 lines (100 loc) · 3.11 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "vue-foundation-vuex",
"version": "1.0.0",
"description": "Testing vue-foundation and Vuex",
"author": "Alberto Gualis <alberto.gualis@gmail.com>",
"private": true,
"scripts": {
"dev": "node build/dev-server.js",
"build": "node build/build.js",
"lint": "eslint --ext .js,.vue src",
"upgrade": "npm run upgrade:rm && npm run upgrade:ncu && npm run upgrade:npm-install",
"upgrade:rm": "rm node_modules -Rf",
"upgrade:ncu": "npm-check-updates --upgradeAll",
"upgrade:npm-install": "npm install",
"unit": "mocha --compilers js:babel-register --require babel-polyfill --recursive src --ignore **/*.avoriaz.js",
"avoriaz": "mocha-webpack --webpack-config build/webpack.base.conf.js --watch test --recursive --require test/.setup.js"
},
"dependencies": {
"es6-promise": "^4.1.0",
"foundation-sites": "^6.3.1",
"isomorphic-fetch": "^2.2.1",
"jquery": "^3.1.1",
"motion-ui": "^1.2.2",
"vue": "^2.2.4",
"vue-router": "^2.3.0",
"vuelidate": "^0.4.2",
"vuex": "latest",
"vuex-router-sync": "^4.1.2",
"what-input": "^4.1.1"
},
"devDependencies": {
"animate.css": "^3.5.2",
"autoprefixer": "^6.7.7",
"avoriaz": "^1.9.1",
"babel-core": "^6.24.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.4.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.2.1",
"babel-preset-es2015": "^6.24.0",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.24.0",
"bourbon": "^4.3.3",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chalk": "^1.1.3",
"connect-history-api-fallback": "^1.3.0",
"css-loader": "^0.27.3",
"eslint": "^3.17.1",
"eslint-config-airbnb-base": "^11.1.1",
"eslint-friendly-formatter": "^2.0.7",
"eslint-import-resolver-webpack": "^0.8.1",
"eslint-loader": "^1.6.3",
"eslint-plugin-html": "^2.0.1",
"eslint-plugin-import": "^2.2.0",
"eventsource-polyfill": "^0.9.6",
"express": "^4.15.2",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.10.1",
"friendly-errors-webpack-plugin": "^1.6.1",
"function-bind": "^1.1.0",
"html-webpack-plugin": "^2.28.0",
"http-proxy-middleware": "^0.17.4",
"jsdom": "^9.12.0",
"loaders.css": "^0.1.2",
"mocha": "^3.2.0",
"mocha-webpack": "^0.7.0",
"node-sass": "^4.5.0",
"npm-check-updates": "^2.10.3",
"opn": "^4.0.2",
"ora": "^1.1.0",
"resolve-url-loader": "^2.0.2",
"sass-loader": "^6.0.3",
"script-loader": "^0.7.0",
"semver": "^5.3.0",
"shelljs": "^0.7.7",
"sinon": "^2.0.0",
"sinon-chai": "^2.8.0",
"sinon-stub-promise": "^4.0.0",
"url-loader": "^0.5.8",
"vue-loader": "^11.1.4",
"vue-style-loader": "^2.0.3",
"vue-template-compiler": "^2.2.4",
"webpack": "^2.2.1",
"webpack-bundle-analyzer": "^2.3.1",
"webpack-dev-middleware": "^1.10.1",
"webpack-hot-middleware": "^2.17.1",
"webpack-merge": "^4.0.0"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}