forked from bahmutov/vue-vuex-todomvc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.56 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
{
"name": "vue-vuex-todomvc",
"version": "1.0.0",
"description": "Simple TodoMVC with Vue and Vuex",
"main": "app.js",
"scripts": {
"test": "start-server-and-test start http://localhost:3000 cy:run",
"posttest": "npm run reset:database",
"test:record": "start-server-and-test start http://localhost:3000 cy:run:record",
"prestart": "npm run reset:database",
"start": "json-server data.json --static . --middlewares ./node_modules/json-server-reset",
"poststart": "npm run reset:database",
"pretest": "npm run lint",
"lint": "standard --fix '*.js' 'cypress/e2e/*.js'",
"prelint": "prettier-standard '*.js' 'cypress/e2e/*.js'",
"cy:open": "cypress open",
"cy:run": "cypress run",
"cy:run:record": "cypress run --record",
"cy:verify": "cypress verify",
"reset:database": "echo '{\"todos\":[]}\n' > data.json",
"reset": "npm run reset:database",
"dev": "start-test 3000 cy:open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bahmutov/vue-vuex-todomvc.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/bahmutov/vue-vuex-todomvc/issues"
},
"homepage": "https://github.com/bahmutov/vue-vuex-todomvc#readme",
"dependencies": {
"json-server": "0.17.1",
"todomvc-app-css": "2.4.2",
"todomvc-common": "1.0.5"
},
"devDependencies": {
"cy-spok": "1.6.1",
"cypress": "12.9.0",
"json-server-reset": "1.6.0",
"prettier": "2.8.4",
"prettier-standard": "15.0.1",
"standard": "17.0.0",
"start-server-and-test": "1.15.4"
}
}