-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.58 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "wuetify-theme",
"version": "1.0.0",
"description": "Wordpress theme for Wue based on Vue.js",
"repository": "[email protected]:r0skar/wuetify-theme.git",
"author": "Oskar Rainer <[email protected]>",
"private": true,
"browserslist": [
"> 1%",
"last 2 versions",
"not IE < 11"
],
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --config .webpackrc.js --mode development --open --hot",
"build": "cross-env NODE_ENV=production webpack --config .webpackrc.js --mode production",
"lint:js": "eslint --ext .js,.vue src",
"lint:css": "stylelint **/*.{vue,css,scss,sass,less}",
"lint": "npm run -s lint:js; npm run -s lint:css; exit 0"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.40",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.40",
"@babel/plugin-transform-runtime": "^7.0.0-beta.42",
"@babel/polyfill": "^7.0.0-beta.40",
"@babel/preset-env": "^7.0.0-beta.40",
"@babel/runtime": "^7.0.0-beta.42",
"babel-eslint": "^8.2.2",
"babel-loader": "^8.0.0-beta",
"clean-webpack-plugin": "^0.1.19",
"cross-env": "^5.1.4",
"css-loader": "^0.28.10",
"dotenv-webpack": "^1.5.5",
"eslint": "^4.18.2",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0",
"eslint-import-resolver-webpack": "^0.8.4",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-vue": "^4.3.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"friendly-errors-webpack-plugin": "^1.6.1",
"fs": "^0.0.1-security",
"glob-all": "^3.1.0",
"hard-source-webpack-plugin": "^0.6.4",
"path": "^0.12.7",
"postcss": "^6.0.19",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^11.1.0",
"postcss-nested": "^3.0.0",
"postcss-responsive-type": "^1.0.0",
"purgecss-webpack-plugin": "^0.20.1",
"purgecss-whitelister": "^1.1.3",
"stylelint": "^9.1.3",
"stylelint-config-prettier": "^3.0.4",
"stylelint-webpack-plugin": "^0.10.3",
"vue-loader": "^14.2.1",
"vue-template-compiler": "^2.5.15",
"webpack": "^4.1.1",
"webpack-bundle-analyzer": "^2.11.1",
"webpack-cli": "^2.0.11",
"webpack-dev-server": "^3.1.1",
"webpack-merge": "^4.1.2"
},
"dependencies": {
"nprogress": "^0.2.0",
"tailwindcss": "^0.4.3",
"vue": "^2.5.15",
"vue-router": "^3.0.1",
"vue-server-renderer": "^2.5.15",
"vuex": "^3.0.1"
}
}