-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.09 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
{
"name": "stackable-e2e-tests",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "cypress open",
"lint": "npm run lint-js",
"lint-js": "wp-scripts lint-js",
"chrome": "cypress run --browser chrome",
"headless": "cypress run --browser chrome --headless",
"cy:run:parallel": "node ./scripts/parallelize-specs.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@wordpress/eslint-plugin": "^7.1.0",
"cypress": "^5.1.0",
"cypress-jest-adapter": "^0.1.1",
"cypress-multi-reporters": "^1.5.0",
"eslint": "^7.8.1",
"eslint-plugin-jest": "^24.0.0",
"lodash": "^4.17.20",
"mocha-junit-reporter": "^2.0.0",
"prettier": "^2.1.1"
},
"dependencies": {
"@cypress/webpack-preprocessor": "^5.5.0",
"args-parser": "^1.2.0",
"cypress-real-events": "^1.5.1",
"glob": "^7.1.7",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"stylelint": "^13.9.0",
"webpack": "^5.16.0"
},
"lint-staged": {
"*.js": [
"./node_modules/eslint/bin/eslint.js ."
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}