-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 951 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
39
40
41
{
"name": "cypress-poc",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"lint": "eslint **/*.ts",
"lint:fix": "eslint --fix **/*.ts"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts}": "eslint --fix"
},
"keywords": [],
"author": "Sarit Vakrat",
"license": "ISC",
"dependencies": {
"@cypress/webpack-preprocessor": "^4.1.0",
"@types/mocha": "^5.2.7",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"cypress": "^3.4.1",
"cypress-plugin-snapshots": "^1.2.9",
"cypress-wait-until": "^1.4.1",
"eslint": "^5.16.0",
"ts-loader": "^6.2.0",
"typescript": "^3.6.3",
"webpack": "^4.41.0"
},
"types": "./global.d",
"devDependencies": {
"husky": "^3.0.5",
"lint-staged": "^9.2.5"
}
}