-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
86 lines (86 loc) · 2.87 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
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "cc-admin",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next export",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"eslint": "eslint . --ext .ts",
"prettier": "prettier -c .prettierrc \"src/{__tests__,pages,store,components}/**/*.{js,jsx,ts,tsx}\" --write",
"test": "jest --colors --config jest.config.js --maxWorkers=50%",
"test:watch": "jest --colors --config jest.config.js --watch --maxWorkers=25%",
"test:ci": "CI=true jest --colors --config jest.config.js --runInBand --coverage",
"coverage": "jest --coverage",
"type-check": "tsc --project tsconfig.json --pretty --noEmit",
"cypress": "cypress open",
"cypress:headless": "cypress run",
"e2e": "start-server-and-test start http://localhost:3000 cypress",
"e2e:headless": "start-server-and-test start http://localhost:3000 cypress:headless",
"prepare": "husky install",
"pre-commit": "npm run prettier && npm run lint && npm run type-check && npm run test && npx --no-install"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,json,md}": [
"git add ."
]
},
"dependencies": {
"@chakra-ui/icons": "^1.1.7",
"@chakra-ui/react": "^1.8.8",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@reduxjs/toolkit": "^1.8.1",
"@tanstack/react-table": "^8.5.22",
"axios": "^0.27.2",
"date-fns-tz": "^1.3.6",
"formik": "^2.2.9",
"framer-motion": "^6",
"lodash": "^4.17.21",
"next": "^12.1.5",
"next-head-seo": "^0.1.3",
"next-react-svg": "^1.1.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.4.0",
"react-redux": "^8.0.1",
"recharts": "^2.1.16",
"shortid": "^2.2.16",
"styled-components": "^5.3.5",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.17.9",
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@heroicons/react": "^1.0.6",
"@svgr/webpack": "^6.2.1",
"@testing-library/dom": "^8.13.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^12.1.10",
"@types/node": "^17.0.30",
"@types/react": "^17.0.11",
"@types/shortid": "^0.0.29",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"babel-plugin-styled-components": "^2.0.7",
"cypress": "^9.5.2",
"eslint": "^8.11.0",
"eslint-config-google": "^0.14.0",
"eslint-config-next": "12.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.1.5",
"eslint-plugin-react": "^7.29.4",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.7",
"msw": "^0.47.4",
"prettier": "^2.6.2",
"typescript": "4.6.2"
}
}