-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 882 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 882 Bytes
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
{
"name": "vue-typescript-sandbox",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack",
"start:dev": "webpack-dev-server --mode=development",
"lint": "tslint -c ./tslint.json --exclude **/*.d.ts --exclude ./node_modules --project . --fix **/*.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "realize",
"license": "ISC",
"devDependencies": {
"css-loader": "^1.0.0",
"prettier": "^1.14.0",
"ts-loader": "^4.4.2",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.14.0",
"tslint-config-standard": "^7.1.0",
"tslint-plugin-prettier": "^1.3.0",
"typescript": "^3.0.1",
"vue": "^2.5.17",
"vue-loader": "^15.2.6",
"vue-template-compiler": "^2.5.17",
"webpack": "^4.16.4",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
}
}