-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.63 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
51
52
53
54
55
{
"name": "@vsf/react-boilerplate",
"version": "1.0.1",
"private": true,
"license": "MIT",
"workspaces": [
"apps/*"
],
"scripts": {
"prepare": "is-ci || husky install",
"build": "turbo run build",
"build:analyze": "turbo run build:analyze",
"dev": "turbo run dev",
"start": "turbo run start",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,css,scss,md}\"",
"clean": "npx rimraf ./**/node_modules && rm yarn.lock",
"clean:hard": "npx rimraf ./**/node_modules && npx rimraf ./**/lib && rm yarn.lock && npx rimraf ./**/.turbo && npx rimraf ./**/.next",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"test:coverage": "npx turbo run test:coverage",
"test:e2e:open": "cd apps/web && npx cypress open",
"test:e2e:run": "cd apps/web && cypress run --browser chrome",
"lhci:mobile": "lhci autorun"
},
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@lhci/cli": "^0.12.0",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/jest": "^29.5.1",
"@vue-storefront/eslint-config": "^2.0.0-rc.7",
"commitizen": "^4.2.5",
"eslint": "^8.38.0",
"husky": "^7.0.4",
"is-ci": "^3.0.1",
"lint-staged": "^13.2.1",
"prettier": "^2.8.0",
"rimraf": "^3.0.2",
"turbo": "1.5.5",
"typescript": "5.0.4",
"cypress": "^12.12.0"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=16.16.0"
},
"packageManager": "[email protected]",
"config": {
"commitizen": {
"path": "cz-conventional-changelog",
"disableScopeLowerCase": true
}
}
}