-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.55 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.55 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
{
"name": "vue-webapp-seed",
"version": "0.1.0",
"description": "Vue and webpack Seed for webapp projects in The Greenhouse",
"main": "src/index.js",
"repository": "git@github.com:thegreenhouseio/vue-webapp-seed.git",
"author": "Owen Buckley <owen.buckley@analogstudios.net>",
"license": "MIT",
"scripts": {
"clean": "rimraf ./build && rimraf ./reports && mkdir ./reports && mkdir ./reports/test-results",
"build": "eslint *.js && webpack --config ./webpack.config.prod.js --progress --profile --bail",
"develop": "webpack-dev-server --open --config ./webpack.config.develop.js --inline --progress",
"serve": "npm run clean && npm run build && http-server ./build -o -a localhost -P http://your-domain.com/api"
},
"dependencies": {
"bootstrap": "4.0.0-alpha.6",
"moment": "^2.18.1",
"vue": "^2.4.2",
"vue-router": "^2.7.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"css-loader": "^0.28.7",
"eslint": "^4.5.0",
"eslint-loader": "^1.9.0",
"favicons-webpack-plugin": "^0.0.7",
"file-loader": "^0.11.2",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.30.1",
"http-server": "^0.10.0",
"node-sass": "^4.5.3",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.6",
"url-loader": "^0.5.9",
"vue-html-loader": "^1.2.4",
"vue-loader": "^13.0.4",
"vue-template-compiler": "^2.4.2",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1",
"webpack-md5-hash": "^0.0.5",
"webpack-merge": "^4.1.0"
}
}