-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.38 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
{
"name": "github-actions",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"check-format": "prettier --check \"**/*.{js,jsx,json,jsonc,md,css}\"",
"clean": "rimraf -v coverage playwright-report test-results .next",
"commitlint": "commitlint --edit ${1}",
"coverage": "vitest run --coverage",
"dev": "next dev",
"format": "prettier --write \"**/*.{js,jsx,json,jsonc,md,css}\"",
"lint": "next lint",
"pre-commit": "lint-staged --verbose --concurrent false",
"prepare": "husky",
"start": "next start",
"test": "vitest",
"test:e2e": "playwright test"
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"prettier --write",
"eslint --fix"
],
"*.{json,jsonc,md,css}": [
"prettier --write"
]
},
"prettier": "@vercel/style-guide/prettier",
"dependencies": {
"next": "14.2.4",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@playwright/test": "^1.45.1",
"@types/node": "^20.14.10",
"@vercel/style-guide": "^6.0.0",
"@vitest/coverage-v8": "^2.0.1",
"eslint": "^8",
"eslint-config-next": "14.2.4",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"rimraf": "^6.0.1",
"vitest": "^2.0.1"
}
}