-
Notifications
You must be signed in to change notification settings - Fork 318
/
package.json
38 lines (38 loc) · 953 Bytes
/
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
{
"scripts": {
"prepare": "husky install",
"lint": "eslint ."
},
"dependencies": {
"cypress-image-snapshot": "^4.0.1",
"eslint-plugin-cypress": "^2.12.1",
"@faker-js/faker": "^8.4.1",
"pg": "^8.9.0",
"sequelize": "^6.21.2",
"sequelize-cli": "^6.4.1"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@types/cypress": "latest",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"cypress": "^12.13.0",
"eslint": "^8.34.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.9.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"typescript": "^4.9.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --max-warnings=0"
}
}