-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.55 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
{
"name": "vuet",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --config ./webpack.dev.ts --hot --watch",
"prod": "cross-env NODE_ENV=production webpack-cli --config ./webpack.dev.ts --progress --hide-modules",
"test": "jest --config test/jest-config.json --watchAll"
},
"author": "wjt",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"element-ui": "^2.4.3",
"vue": "^2.5.9",
"vue-class-component": "^6.2.0",
"vuex": "^3.0.1"
},
"devDependencies": {
"@types/jest": "^23.1.4",
"@types/node": "^10.5.1",
"@types/webpack": "^4.4.5",
"@vue/test-utils": "^1.0.0-beta.20",
"autoprefixer": "^7.2.6",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.2",
"cross-env": "^5.2.0",
"css-loader": "^0.28.11",
"file-loader": "^1.1.11",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.2.0",
"mini-css-extract-plugin": "^0.4.1",
"postcss-loader": "^2.1.5",
"raw-loader": "^0.5.1",
"style-loader": "^0.19.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"ts-jest": "^23.0.0",
"ts-loader": "^4.4.2",
"ts-node": "^7.0.0",
"tslint": "^5.10.0",
"tslint-loader": "^3.6.0",
"typescript": "^2.9.2",
"url-loader": "^0.6.2",
"vue-loader": "^13.7.2",
"vue-style-loader": "^3.1.2",
"vue-template-compiler": "^2.5.3",
"webpack": "^4.14.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4"
}
}