-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.01 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
{
"name": "vue-app",
"version": "0.0.0",
"description": "Boilplate web application for VueJS with Typescript support",
"main": "src/main.ts",
"dependencies": {
"axios": "^0.21.2",
"vue": "^2.6.12",
"vue-class-component": "^7.2.6",
"vue-router": "^3.5.1",
"vuex": "^3.6.2"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^11.2.0",
"@rollup/plugin-replace": "^2.4.1",
"rollup": "^2.42.3",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-ts-vue": "^0.5.0",
"sass": "^1.32.8",
"tslib": "^2.1.0",
"typescript": "^4.2.3",
"vue-property-decorator": "^8.5.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"cls-vuex": "node no-vuex-store.js",
"tsc": "npm run tsc --build",
"build": "npm run tsc && rollup -c --environment ASPNETCORE_ENVIRONMENT:Local",
"watch": "rollup -c rollup.config.live.js --watch",
"serve": "node server.js"
},
"keywords": [],
"author": "Jeremy Travis",
"license": "MIT"
}