-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
44 lines (44 loc) · 1.44 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
{
"name": "turkey",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "serve -p 5000",
"buildDocker": "docker build -t cypress-test:v1 .",
"testDocker": "docker run -v ${PWD}:/e2e -w /e2e cypress-test:v1",
"test": "cypress run --browser=chrome",
"cy:run:chrome": "cypress run --browser=chrome",
"cy:run:firefox": "cypress run --browser=firefox",
"cy:run:edge": "cypress run --browser=edge",
"test:chrome": "start-server-and-test start http://localhost:5000 cy:run:chrome",
"test:firefox": "start-server-and-test start http://localhost:5000 cy:run:firefox",
"test:edge": "start-server-and-test start http://localhost:5000 cy:run:edge",
"prettier:write": "prettier --write ./cypress",
"prettier:check": "prettier --check ./cypress",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yanfengliu/turkey.git"
},
"author": "Yanfeng Liu",
"license": "ISC",
"bugs": {
"url": "https://github.com/yanfengliu/turkey/issues"
},
"homepage": "https://github.com/yanfengliu/turkey#readme",
"dependencies": {
"@types/cypress-image-snapshot": "^3.1.6",
"cypress": "^8.7.0",
"cypress-image-snapshot": "^4.0.1",
"prettier": "^2.3.2",
"serve": "^14.1.2",
"start-server-and-test": "^2.0.3",
"typescript": "^4.3.5"
},
"devDependencies": {
"husky": "^7.0.0",
"pretty-quick": "^3.1.1"
}
}