-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
126 lines (126 loc) · 4.46 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "react-admin-template",
"version": "0.1.0",
"private": true,
"homepage": ".",
"scripts": {
"dev": "next dev -p 3005",
"build": "set NODE_ENV=production && next build",
"start": "next start",
"lint": "eslint ./{src,pages}/**/*.{ts,tsx}",
"pretty": "prettier --write --config .prettierrc.json {src,pages}/**/*.{ts,tsx}",
"format": "npm run lint -- --fix",
"predeploy": "npm run build",
"deploy": "gh-pages -d out",
"test:unit": "jest",
"test:unit:watch": "jest --watch",
"test:unit:coverage": "jest --coverage",
"cypress:e2e": "cypress run",
"cypress:e2e:ui": "cypress open",
"cypress:headless": "cypress run --browser chrome --headless",
"test:e2e": "start-server-and-test start 3005 cypress:e2e",
"test:e2e:ci": "start-server-and-test start 3005 cypress:headless",
"test": "npm run test:unit && npm run cypress:e2e",
"storybook": "start-storybook -p 6006 -c .storybook -s ./public",
"build-storybook": "build-storybook",
"analyze": "cross-env ANALYZE=true next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build"
},
"lint-staged": {
"{src,pages}/**/*.{ts,tsx}": "npm run format"
},
"validate-branch-name": {
"pattern": "^(main|develop){1}$|^(feature|bugfix|hotfix|chore|experiment)/([\\w-]+?)(/\\d+)?$",
"errorMsg": "Branch name format : <type>/<name>/<issue_ID>"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "validate-branch-name && npm run test"
}
},
"dependencies": {
"@date-io/date-fns": "^1.3.13",
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "*",
"@material-ui/pickers": "^3.2.10",
"@next/bundle-analyzer": "^11.1.0",
"@storybook/react": "^6.2.9",
"@types/node": "^14.14.20",
"@types/react": "^17.0.0",
"@types/react-simple-maps": "^1.0.3",
"apexcharts": "^3.26.1",
"autoprefixer": "^10.2.6",
"clsx": "^1.1.1",
"cross-env": "^7.0.3",
"date-fns": "^2.16.1",
"gh-pages": "^3.1.0",
"identity-obj-proxy": "^3.0.0",
"moment": "^2.29.1",
"msw": "^0.26.2",
"next": "^10.1.3",
"next-i18next": "^8.1.3",
"node-fetch": "^2.6.1",
"postcss": "^8.3.0",
"prop-types": "^15.7.2",
"react": "17.0.1",
"react-apexcharts": "^1.3.9",
"react-big-calendar": "^0.30.0",
"react-dom": "17.0.1",
"react-perfect-scrollbar": "^1.5.8",
"react-simple-maps": "^2.3.0",
"react-tooltip": "^4.2.19",
"tailwindcss": "^2.1.4",
"ts-jest": "^26.5.1",
"typescript": "^4.1.3"
},
"devDependencies": {
"@babel/core": "^7.12.13",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@storybook/addon-actions": "^6.1.17",
"@storybook/addon-essentials": "^6.1.17",
"@storybook/addon-links": "^6.1.17",
"@testing-library/cypress": "^7.0.3",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/react-hooks": "^8.0.0",
"@testing-library/user-event": "^14.1.1",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-preset-react-app": "^10.0.0",
"css-loader": "^5.0.1",
"cypress": "^6.9.1",
"eslint": "^7.19.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-react-app": "^6.0.0",
"eslint-import-resolver-ts": "^0.4.2",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest-dom": "^3.6.5",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"next-compose-plugins": "^2.2.1",
"prettier": "^2.2.1",
"sass": "^1.32.6",
"sass-loader": "^10.1.1",
"start-server-and-test": "^1.12.0",
"style-loader": "^2.0.0",
"validate-branch-name": "^1.0.6"
}
}