-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 927 Bytes
/
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
{
"name": "vuejsexperiment",
"version": "1.0.0",
"description": "Experimenting with VueJS",
"main": "index.ts",
"scripts": {
"build": "webpack",
"start": "webpack-dev-server",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "mleray",
"license": "ISC",
"devDependencies": {
"css-loader": "^2.1.0",
"eslint": "^5.13.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.1.0",
"ts-loader": "^5.3.3",
"typescript": "^3.3.1",
"vue": "^2.5.22",
"vue-template-compiler": "^2.5.22",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1"
},
"dependencies": {
"axios": "^0.18.0",
"style-loader": "^0.23.1",
"vue-loader": "^15.6.2",
"webpack-dev-server": "^3.1.14"
}
}