This repository was archived by the owner on Nov 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.33 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.33 KB
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
{
"name": "aiplugin",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "11.11.1",
"@emotion/styled": "11.11.0",
"@fortawesome/fontawesome-svg-core": "6.4.0",
"@fortawesome/free-solid-svg-icons": "6.4.0",
"@fortawesome/react-fontawesome": "0.2.0",
"@mui/icons-material": "5.14.0",
"@mui/material": "5.14.1",
"@mui/x-date-pickers": "6.10.0",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "12.1.4",
"@testing-library/user-event": "13.5.0",
"@types/jest": "27.5.2",
"@types/node": "16.18.22",
"@types/react": "18.2.15",
"@types/react-dom": "18.2.7",
"autoprefixer": "10.4.14",
"axios": "1.4.0",
"classnames": "2.3.2",
"env-cmd": "10.1.0",
"firebase": "9.22.0",
"font-awesome": "4.7.0",
"framer-motion": "^10.16.4",
"postcss": "8.4.23",
"react": "18.2.0",
"react-confetti": "6.1.0",
"react-dom": "18.2.0",
"react-hook-form": "7.45.2",
"react-hook-form-mui": "6.4.2",
"react-multi-carousel": "2.8.4",
"react-router-dom": "6.14.1",
"react-scripts": "5.0.1",
"react-slick": "0.29.0",
"react-transition-group": "4.4.5",
"react-use": "17.4.0",
"sitemap": "7.1.1",
"slick-carousel": "1.8.1",
"snackbar": "1.1.0",
"uuid": "9.0.0",
"web-vitals": "2.1.4"
},
"scripts": {
"build": "echo \"Please use build:dev/build:staging/build:prod \" && exit 1",
"start": "env-cmd -f .env.development react-scripts start",
"build:dev": "env-cmd -f .env.development react-scripts build",
"compile:dev": "npm run build:dev",
"generate_sitemap:staging": "env-cmd -f .env.staging node generateSiteMap.js",
"build:staging": "env-cmd -f .env.staging react-scripts build",
"compile:staging": "npm run generate_sitemap:staging && npm run build:staging",
"generate_sitemap:prod": "env-cmd -f .env.production node generateSiteMap.js",
"build:prod": "env-cmd -f .env.production react-scripts build",
"compile:prod": "npm run generate_sitemap:prod && npm run build:prod",
"test": "react-scripts test",
"eject": "react-scripts eject",
"staging": "env-cmd -f .env.staging npm start",
"pretty": "prettier --write \"./**/*.{js,jsx,ts,tsx,json}\"",
"lint": "eslint src/**/*.{js,jsx,ts,tsx}",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint"
],
"*.{ts,tsx,json}": [
"prettier --write"
]
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/babel__core": "7.20.1",
"@types/react-slick": "0.23.10",
"@types/uuid": "9.0.1",
"@typescript-eslint/eslint-plugin": "5.62.0",
"eslint": "8.45.0",
"eslint-config-standard-with-typescript": "37.0.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "27.2.2",
"eslint-plugin-n": "16.0.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.33.0",
"husky": "8.0.0",
"lint-staged": "13.2.3",
"prettier": "3.0.0",
"prettier-plugin-tailwindcss": "^0.5.4",
"tailwindcss": "3.3.3",
"typescript": "4.9.5"
}
}