-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.41 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
{
"name": "pagefy-app",
"version": "1.5.0",
"private": true,
"author": "Devbox",
"engines": {
"node": "20.x",
"npm": "10.x"
},
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@iconify/icons-mdi": "^1.1.47",
"@iconify/react": "^3.1.3",
"@material-ui/core": "^4.12.3",
"@mui/icons-material": "^5.3.0",
"@mui/lab": "^5.0.0-alpha.69",
"@mui/material": "^5.3.0",
"@mui/styled-engine-sc": "^5.3.0",
"@reduxjs/toolkit": "^1.7.1",
"@stripe/react-stripe-js": "^1.12.0",
"@stripe/stripe-js": "^1.39.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"axios": "^0.26.0",
"env-cmd": "^10.1.0",
"firebase": "^9.6.8",
"fs": "^0.0.1-security",
"moment": "^2.29.1",
"react": "^17.0.2",
"react-animations": "^1.0.0",
"react-colorful": "^5.6.1",
"react-countdown": "^2.3.2",
"react-dom": "^17.0.2",
"react-dropzone": "^12.0.2",
"react-helmet": "^6.1.0",
"react-hook-form": "^7.25.1",
"react-hot-toast": "^2.5.2",
"react-localization": "^1.0.17",
"react-redux": "^7.2.6",
"react-router-dom": "^6.2.1",
"react-scripts": "5.0.1",
"redux-persist": "^6.0.0",
"styled-components": "^5.3.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/jest": "^24.9.1",
"@types/node": "^12.20.42",
"@types/react": "^17.0.83",
"@types/react-animations": "^1.0.0",
"@types/react-dom": "^16.9.14",
"@types/react-helmet": "^6.1.5",
"@types/react-redux": "^7.1.22",
"@types/uuid": "^8.3.4",
"prettier": "2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.1.6"
},
"scripts": {
"start": "react-scripts start",
"start-dev": "env-cmd -f .env.dev react-scripts start",
"update-pkg-version": "ts-node ./src/utils/update-version-pkg-json/index.ts && prettier --write ./package.json",
"build": "react-scripts build",
"test": "react-scripts test",
"deploy-main": "git checkout main && git merge develop && git push origin main && git checkout develop",
"serve:build": "serve -s build"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}