-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 1.03 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": "todo",
"version": "0.0.1",
"dependencies": {
"stylus": "^0.54.5",
"ts-loader": "^4.1.0",
"tslint": "^5.7.0",
"typescript": "^2.8.1",
"vue": "^2.5.16",
"vue-class-component": "^6.2.0",
"vue-property-decorator": "^6.0.0",
"vue-template-loader": "^0.4.1",
"vuetype": "^0.3.2",
"vuex": "^3.0.1",
"vuex-class": "^0.3.0",
"webpack": "^4.5.0"
},
"description": "Implementation of todo list using Vue, Vuex and Typescript",
"main": "index.js",
"scripts": {
"build": "mkdir dist && stylus src/styles -o dist/styles.css && webpack",
"watch-vue": "webpack-dev-server --open",
"watch-styles": "mkdir dist && stylus -w src/styles -o dist/styles.css",
"start": "npm-run-all --parallel watch-vue watch-styles",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Jan Gamec",
"license": "MIT",
"devDependencies": {
"launch-editor-middleware": "^2.2.1",
"npm-run-all": "^4.1.2",
"webpack-cli": "^2.0.14",
"webpack-dev-server": "^3.1.1"
}
}