-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.33 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
{
"name": "sandbox-cypress",
"version": "1.0.0",
"description": "A sandbox project for https://github.com/cypress-io/cypress.",
"scripts": {
"cypress:open": "cypress open",
"lint": "eslint --ext .js,.ts .",
"lint:fix": "npm run lint -- --fix"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/tanakaworld/sandbox-cypress.git"
},
"author": "tanakaworld",
"license": "MIT",
"bugs": {
"url": "https://github.com/tanakaworld/sandbox-cypress/issues"
},
"devDependencies": {
"@commitlint/cli": "9.1.2",
"@commitlint/config-conventional": "9.1.2",
"@cypress/webpack-preprocessor": "5.4.4",
"@typescript-eslint/eslint-plugin": "3.9.1",
"@typescript-eslint/parser": "3.9.1",
"cypress": "5.0.0",
"eslint": "7.7.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-cypress": "2.11.1",
"eslint-plugin-prettier": "3.1.4",
"fork-ts-checker-webpack-plugin": "5.1.0",
"husky": "4.2.5",
"lint-staged": "10.2.11",
"prettier": "2.0.5",
"ts-loader": "8.0.2",
"tsconfig-paths-webpack-plugin": "3.3.0",
"typescript": "3.9.7",
"webpack": "4.44.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
]
}
}