-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.04 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
{
"name": "testing-app-example",
"version": "1.0.0",
"description": "A TodoMVC app with simple REST backend",
"private": true,
"main": "index.js",
"scripts": {
"start": "json-server --static public --watch data.json --middlewares ./node_modules/json-server-reset",
"test": "echo \"Error: no test specified\" && exit 1",
"reset": "node ./scripts/reset-database.js",
"reset:db": "npm run reset",
"reset:database": "npm run reset"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bahmutov/testing-app-example.git"
},
"keywords": [
"cypress-example"
],
"author": "Gleb Bahmutov <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/bahmutov/testing-app-example/issues"
},
"homepage": "https://github.com/bahmutov/testing-app-example#readme",
"dependencies": {
"json-server": "0.17.0",
"json-server-reset": "1.3.1"
},
"devDependencies": {
"prettier": "2.5.1",
"start-server-and-test": "1.14.0"
},
"engines": {
"node": ">=12"
}
}