-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.98 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
{
"name": "calendar-widget",
"version": "1.0.0",
"private": true,
"homepage": ".",
"dependencies": {
"@chakra-ui/react": "^2.2.3",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"dayjs": "^1.11.10",
"env-cmd": "^10.1.0",
"framer-motion": "^11.14.0",
"i18next": "^23.7.11",
"react": "^18.2.0",
"react-calendar": "^4.7.0",
"react-dom": "^18.2.0",
"react-i18next": "^14.0.0",
"react-scripts": "5.0.1",
"theme-colors": "^0.1.0",
"timezone": "^1.0.23",
"utc": "^0.1.0",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "react-app-rewired start",
"start:staging": "env-cmd -f .env.staging react-app-rewired start",
"start:production": "env-cmd -f .env.production react-app-rewired start",
"build:staging": "env-cmd -f .env.staging react-app-rewired build",
"build:production": "env-cmd -f .env.production react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-scripts eject",
"lint": "eslint .",
"lint:fix": "eslint --fix",
"lint:fix-all": "eslint --fix . && prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}'",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"engines": {
"node": "^14.17.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-react": "^7.33.2",
"prettier": "^3.1.1",
"react-app-rewired": "^2.2.1",
"webpack-bundle-analyzer": "^4.10.2"
}
}