forked from bigcommerce/stand-with-ukraine-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.53 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": "stand-with-ukraine",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/bigcommerce/stand-with-ukraine-frontend.git"
},
"bugs": {
"url": "https://github.com/bigcommerce/stand-with-ukraine-frontend/issues"
},
"homepage": "https://github.com/bigcommerce/stand-with-ukraine-frontend#readme",
"author": "",
"license": "MIT",
"workspaces": [
"packages/*",
"apps/*"
],
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix"
]
},
"devDependencies": {
"@bigcommerce/eslint-config": "^2.6.1",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@playwright/test": "^1.27.1",
"eslint": "^8.25.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"playwright-test-coverage": "^1.2.0",
"prettier": "^2.7.1",
"turbo": "^1.5.6"
},
"scripts": {
"build": "turbo run build",
"dev": "CYPRESS_COVERAGE='true' turbo run dev --parallel --continue",
"lint": "turbo run lint && yarn prettier-cmd --check && yarn eslint-cmd",
"test": "turbo run test",
"coverage": "turbo run coverage",
"clean": "turbo run clean && rm -rf node_modules",
"prettier-cmd": "prettier \"**/*.{ts,tsx,md,scss,css,yml,yaml}\"",
"eslint-cmd": "eslint \"**/*.{ts,tsx}\"",
"format": "yarn prettier-cmd --write && yarn eslint-cmd --fix",
"merge-coverage": "./scripts/merge-coverage.sh",
"e2e": "./scripts/e2e-tests.sh"
},
"prettier": "@bigcommerce/eslint-config/prettier",
"packageManager": "[email protected]"
}