-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.86 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "start-nextjs",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest",
"cover": "jest --coverage",
"lint": "next lint",
"prepare": "husky install",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check src",
"check-lint": "eslint src --ext ts --ext tsx --ext js",
"check": "npm run check-format && npm run check-lint && npm run check-types && npm run build",
"format": "prettier --write .",
"cy": "cypress open",
"cyr": "cypress run"
},
"dependencies": {
"next": "13.1.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"swr": "2.0.3"
},
"devDependencies": {
"@commitlint/cli": "17.4.2",
"@commitlint/config-conventional": "17.4.2",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@types/node": "18.11.18",
"@types/react": "18.0.27",
"babel-jest": "29.4.1",
"commitizen": "4.3.0",
"cypress": "12.5.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.33.0",
"eslint-config-next": "13.1.6",
"eslint-config-prettier": "8.6.0",
"husky": "8.0.3",
"identity-obj-proxy": "3.0.0",
"jest": "29.4.1",
"jest-environment-jsdom": "29.4.1",
"jest-sonar-reporter": "2.0.0",
"lint-staged": "13.1.0",
"msw": "1.0.0",
"prettier": "2.8.3",
"react-test-renderer": "18.2.0",
"sass": "1.58.0",
"typescript": "4.9.5",
"whatwg-fetch": "3.6.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{scss,json,md}": [
"npm run format",
"git add ."
],
"*.{ts,tsx,js}": [
"eslint --fix",
"npm run format",
"git add ."
]
}
}