-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.77 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "todomvc-client-vue-composed",
"version": "0.0.1",
"description": "Building a TodoMVC app with Vue from scratch.",
"main": "index.js",
"scripts": {
"build": "webpack",
"dev": "webpack -w",
"lint": "eslint 'src/**' --fix",
"start": "cd public/mock && python -m SimpleHTTPServer 8000",
"start:live": "cd public/live && python -m SimpleHTTPServer 8000",
"test": "jest",
"test:unit": "jest src/",
"test:e2e": "jest tests/"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test:unit"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/cerebralideas/todomvc-client-vue.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/cerebralideas/todomvc-client-vue/issues"
},
"homepage": "https://github.com/cerebralideas/todomvc-client-vue#readme",
"dependencies": {
"@reduxjs/toolkit": "^1.0.4",
"page": "^1.11.5",
"redux-vuex": "^0.3.2",
"router5": "^7.0.2",
"router5-plugin-browser": "^7.0.2",
"todomvc-app-css": "~2.2.0",
"uuid": "^3.3.3",
"vue": "^2.6.10"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"babel-jest": "^25.1.0",
"babel-loader": "^8.0.6",
"css-loader": "^3.2.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^6.0.1",
"husky": "^3.1.0",
"jest": "^25.1.0",
"mini-css-extract-plugin": "^0.8.0",
"miragejs": "^0.1.33",
"playwright": "^0.9.24",
"prettier": "^1.19.1",
"vue-loader": "^15.7.2",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
}
}