-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.54 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
{
"name": "woording-web",
"version": "0.0.2",
"description": "Woording front end SPA",
"author": "Cor Pruijs",
"main": "index.js",
"repository": "woording/woording-web",
"scripts": {
"dev": "watchify -vd -p browserify-hmr -e src/main.js -o dist/build.js & http-server -c 1",
"build": "cross-env NODE_ENV=production browserify -e src/main.js | uglifyjs -c warnings=false -m > dist/build.js",
"lint": "eslint --ext .js,.vue src test/unit"
},
"browserify": {
"transform": [
"vueify",
"babelify"
]
},
"devDependencies": {
"babel-core": "^6.0.0",
"babel-plugin-transform-runtime": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"babel-preset-stage-2": "^6.0.0",
"babel-runtime": "^5.8.0",
"babelify": "^7.2.0",
"browserify": "^12.0.1",
"browserify-hmr": "^0.4.0",
"cross-env": "^1.0.5",
"eslint": ">=4.18.2",
"eslint-plugin-html": "^1.1.0",
"http-server": "^0.8.5",
"jasmine-core": "^2.4.1",
"karma": "^0.13.15",
"karma-browserify": "^4.4.2",
"karma-jasmine": "^0.3.6",
"karma-phantomjs-launcher": "^0.2.1",
"karma-spec-reporter": "0.0.23",
"phantomjs": "^1.9.19",
"proxyquireify": "^3.0.1",
"uglify-js": "^2.5.0",
"vue-hot-reload-api": "^1.2.2",
"vueify": "^8.0.0",
"vueify-insert-css": "^1.0.0",
"watchify": "^3.4.0",
"node-sass": ">=4.13.1",
"whatwg-fetch": "^0.11.0"
},
"dependencies": {
"rx": "^4.0.7",
"vue": "^1.0.7",
"vue-rx": "^1.0.0",
"vue-resource": "^0.1.17",
"vue-router": "^0.7.5"
}
}