-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
75 lines (75 loc) · 2.5 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
65
66
67
68
69
70
71
72
73
74
75
{
"name": "cypress-fill-command",
"version": "1.0.2",
"description": "A Cypress command for fill inputs",
"homepage": "https://github.com/DanielFerrariR/cypress-fill-command",
"repository": {
"type": "git",
"url": "git+https://github.com/DanielFerrariR/cypress-fill-command.git"
},
"keywords": [
"cypress",
"command",
"type",
"e2e",
"test"
],
"main": "dist/index.js",
"types": "typings/index.d.ts",
"license": "MIT",
"scripts": {
"commit": "git add . && git-cz",
"lint": "eslint --ext .js,.ts,.md .",
"prettier": "prettier \"**/*.+(js|json|ts|md|eslintrc|prettierrc)\"",
"format": "yarn prettier --write",
"check-format": "yarn prettier --list-different",
"tsc": "tsc",
"tsc:cypress": "tsc -p spec/cypress/tsconfig.json",
"check-types": "yarn tsc && yarn tsc:cypress",
"validate": "npm-run-all --parallel check-types check-format lint test:e2e:run",
"build": "tsc",
"prepublish": "tsc",
"start": "serve --no-clipboard --single --listen 3000 webapp",
"pretest:e2e": "tsc",
"test:e2e": "is-ci \"test:e2e:run\" \"test:e2e:dev\"",
"test:e2e:run": "cross-env DEBUG=start-server-and-test start-server-and-test start http://localhost:3000 cy:run",
"test:e2e:dev": "cross-env DEBUG=start-server-and-test start-server-and-test start http://localhost:3000 cy:open",
"cy:run": "cypress run",
"cy:open": "cypress open"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@types/node": "^14.6.0",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"babel-eslint": "^10.1.0",
"commitizen": "^4.1.2",
"cross-env": "^7.0.2",
"cypress": "^5.0.0",
"eslint": "^7.5.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-airbnb-typescript": "^9.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-cypress": "^2.11.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-mdx": "^1.7.1",
"eslint-plugin-tsdoc": "^0.2.6",
"husky": "^4.2.5",
"is-ci-cli": "^2.1.2",
"lint-staged": "^10.2.11",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"remark-preset-lint-consistent": "^3.0.1",
"remark-preset-lint-markdown-style-guide": "^3.0.1",
"remark-preset-lint-recommended": "^4.0.1",
"remark-preset-prettier": "^0.4.0",
"serve": "^11.3.2",
"start-server-and-test": "^1.11.3",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
}
}