-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.67 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
{
"name": "clean-project",
"version": "1.0.0",
"description": "Clean Project",
"author": "Eline van Hooff",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot",
"stub": "cross-env NODE_ENV=stub webpack-dev-server --open --hot",
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"start": "npm run dev",
"lint": "eslint --ext .js,.vue src",
"commit": "npm run build && git stage . && git status && git commit -m 'update' && git push"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"dependencies": {
"axios": "^0.18.1",
"bootstrap": "^4.4.1",
"es6-promise": "^4.2.8",
"mailparser": "^2.7.7",
"three": "^0.102.1",
"vue": "^2.6.11",
"vue-axios": "^2.1.5",
"vue-router": "^3.1.3",
"vue-toasted": "^1.1.27",
"vuelidate": "^0.7.4",
"vuex": "^3.1.2"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@vue/cli-plugin-babel": "^3.12.1",
"@vue/cli-plugin-eslint": "^3.12.1",
"@vue/cli-plugin-pwa": "^3.12.1",
"@vue/cli-service": "^4.1.2",
"babel-loader": "^8.0.6",
"babel-polyfill": "^7.0.0-beta.3",
"babel-preset-env": "^7.0.0-beta.3",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^5.1.1",
"cross-env": "^5.2.1",
"css-loader": "^1.0.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^4.0.0-beta.11",
"node-sass": "^4.13.0",
"sass-loader": "^7.3.1",
"vue-loader": "^14.2.3",
"vue-template-compiler": "^2.6.11",
"webpack-cli": "^3.3.10"
},
"engines": {
"node": ">= 10"
}
}