-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.24 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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test:ci": "jest --ci",
"test:unit": "jest -u",
"test:coverage": "yarn test:unit --coverage",
"test:watch": "yarn test:unit --watch --verbose",
"prettier": "prettier '**/*.{tsx,ts}' --write",
"eslint:fix": "eslint ./ --fix",
"codeStyle:fix": "yarn prettier:fix && yarn eslint:fix",
"husky": "pretty-quick --staged && yarn prettier",
"prettier:fix": "prettier --write \"*/**/*.{js,ts,tsx,json}\"",
"jenkins:lint": "npm-groovy-lint"
},
"dependencies": {
"next": "latest",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@testing-library/user-event": "14.4.3",
"@types/react": "18.0.18",
"eslint": "8.23.0",
"eslint-config-next": "^12.2.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-testing-library": "^5.6.2",
"jest": "29.0.2",
"jest-environment-jsdom": "29.0.2",
"npm-groovy-lint": "^10.1.0",
"prettier": "^2.7.1",
"prettier-eslint": "^15.0.1",
"prettier-eslint-cli": "^7.1.0",
"pretty-quick": "^3.1.3",
"typescript": "4.8.2"
}
}