This repository has been archived by the owner on May 28, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.68 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
{
"name": "app",
"version": "1.0.0",
"description": "A docker node webpack example template",
"author": "Mikael Norlén",
"license": "MIT",
"dependencies": {
"express": "^4.16.4",
"js-cookie": "^2.2.0",
"pug": "^2.0.3",
"vue": "^2.5.17",
"vue-router": "^3.0.1",
"vuex": "^3.0.1",
"vuex-persistedstate": "^2.5.4"
},
"scripts": {
"d": ". ./docker/docker.sh &&",
"clean": "find node_modules -mindepth 1 -delete && find app/public/build -type f ! -name .gitkeep -delete",
"eslint": "eslint --ext .js,.vue ./app/public/js/**",
"slint": "stylelint './app/public/styles/**/*'",
"lint": "yarn eslint; yarn slint",
"test": "jest",
"coverage": "jest --coverage"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-loader": "7",
"babel-preset-env": "^1.7.0",
"babel-preset-vue": "^2.0.2",
"css-loader": "^1.0.0",
"cssnano": "^4.1.7",
"eslint": "^5.7.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.25.1",
"eslint-plugin-vue": "^5.0.0-beta.3",
"install": "^0.12.2",
"jest": "^23.6.0",
"mini-css-extract-plugin": "^0.4.4",
"node-sass": "^4.9.4",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.2.0",
"prettier": "^1.14.3",
"prettier-eslint": "^8.8.2",
"prettier-stylelint": "^0.4.2",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"stylelint": "^9.6.0",
"stylelint-config-prettier": "^4.0.0",
"uglifyjs-webpack-plugin": "^2.0.1",
"vue-loader": "^15.4.2",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.5.17",
"webpack": "^4.16.4",
"webpack-cli": "^3.1.0"
}
}