-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 997 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
{
"scripts": {
"dev": "docker-compose -f docker-compose-local-db.yml up --build",
"clean": "docker system prune -f && docker volume prune -f",
"clean-images": "docker images prune -f",
"test": "CYPRESS_BASE_URL=http://localhost:8080/admin cypress run --e2e --headless",
"cypress": "CYPRESS_BASE_URL=http://localhost:8080/admin cypress open",
"lint": "prettier --check \"**/*.{js,jsx,ts,tsx}\" & eslint -c .eslintrc.js \"**/*.{js,jsx,ts,tsx}\"",
"fix": "prettier --write \"**/*.{js,jsx,ts,tsx}\" && eslint -c .eslintrc.js \"**/*.{js,jsx,ts,tsx}\" --fix"
},
"devDependencies": {
"cypress": "^12.10.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-cypress": "^2.13.3",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier": "^2.7.1"
},
"dependencies": {
"eslint-plugin-import": "^2.27.5"
}
}