forked from microsoft/TypeScript-Vue-Starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.42 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
{
"name": "typescript-vue-starter",
"version": "1.0.0",
"description": "",
"private": true,
"main": "index.ts",
"scripts": {
"watch:dev": "cross-env APP_ENV=dev webpack --watch --log-level=debug",
"build:dev": "cross-env APP_ENV=dev webpack --colors --progress --log-level=debug --display-error-details --display-modules",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": {
"name": "Chigozirim Chukwu",
"url": "https://github.com/smac89"
},
"license": "Apache-2.0",
"dependencies": {
"bootstrap-vue": "^2.0.0-rc.11",
"vue": "^2.5.16",
"vue-class-component": "^6.2.0",
"vue-property-decorator": "^7.0.0",
"vue-router": "^3.0.1"
},
"devDependencies": {
"@types/node": "^10.5.2",
"@types/webpack": "^4.4.7",
"clean-webpack-plugin": "^0.1.19",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"eslint": "^4.18.2",
"html-webpack-plugin": "^3.2.0",
"chunk-manifest-webpack-plugin": "^1.1.2",
"node-sass": "^4.9.2",
"sass-loader": "^7.0.3",
"ts-loader": "^4.4.2",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript": "^2.9.2",
"vue-loader": "^15.2.4",
"vue-style-loader": "^4.1.1",
"vue-template-compiler": "^2.5.2",
"webpack": "^4.16.1",
"webpack-cli": "^3.1.0",
"webpack-merge": "^4.1.3"
},
"engines": {
"node": ">= 8.9.0",
"npm": ">= 5.6.0",
"yarn": ">= 1.6.0"
}
}