-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.12 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
{
"name": "yii2-app",
"description": "Yii2 my basic app",
"version": "1.0.0",
"author": "Alexey Shishkov <[email protected]>",
"private": true,
"scripts": {
"backend:dev": "webpack-dev-server --mode development --open --hot --content-base backend --config backend/webpack.dev.js",
"backend:build": "webpack --mode production --progress --config backend/webpack.prod.js",
"backend:test": "jest --config=backend/jest.config.js",
"frontend:dev": "webpack --mode development --config ./themes/frontend/webpack.dev.js --watch",
"frontend:build": "webpack --mode production --progress --config ./themes/frontend/webpack.prod.js"
},
"dependencies": {
"@ckeditor/ckeditor5-build-classic": "^10.0.1",
"@mdi/font": "^2.4.85",
"@websanova/vue-auth": "^2.21.11-beta",
"axios": "^0.18.0",
"moment": "^2.22.2",
"quasar-framework": "^0.16.0",
"vee-validate": "^2.1.0-beta.1",
"vue": "^2.5.16",
"vue-axios": "^2.1.1",
"vue-meta": "^1.5.0",
"vue-moment": "^4.0.0-0",
"vue-router": "^3.0.1",
"vuex": "^3.0.1",
"vuex-loading": "^0.3.0"
},
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.16",
"autoprefixer": "^8.6.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.0.1",
"babel-loader": "^7.1.4",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-import-resolver-webpack": "^0.10.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-vue": "^4.5.0",
"file-loader": "^1.1.11",
"jest": "^23.1.0",
"mini-css-extract-plugin": "^0.4.0",
"node-sass": "^4.9.0",
"postcss-loader": "^2.1.5",
"resolve-url-loader": "^2.3.0",
"sass-loader": "^7.0.2",
"style-loader": "^0.21.0",
"vue-jest": "^2.6.0",
"vue-loader": "^15.2.4",
"vue-style-loader": "^4.1.0",
"vue-template-compiler": "^2.5.16",
"webpack": "^4.10.2",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^3.0.1",
"webpack-dev-server": "^3.1.4",
"webpack-merge": "^4.1.2"
}
}