-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
109 lines (109 loc) · 2.82 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
{
"name": "devbootcamp",
"version": "0.1.0",
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@fortawesome/fontawesome-free": "^6.2.0",
"@headlessui/react": "^1.7.3",
"@material-ui/core": "^4.12.4",
"@mui/material": "^5.10.7",
"@reduxjs/toolkit": "^1.8.4",
"@stripe/react-stripe-js": "^1.12.0",
"@stripe/stripe-js": "^1.38.1",
"@tailwindcss/typography": "^0.5.4",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^13.0.0",
"@testing-library/user-event": "^13.2.1",
"axios": "^0.27.2",
"base-64": "^1.0.0",
"chart.js": "^2.9.4",
"list-react-files": "^0.2.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^6.14.2",
"react-hot-toast": "^1.0.2",
"react-icons": "^4.4.0",
"react-loader-spinner": "^3.1.14",
"react-markdown": "7.0.0",
"react-redux": "^8.0.2",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "5.0.1",
"react-stripe-checkout": "^2.6.3",
"redux": "^4.2.0",
"redux-thunk": "^2.4.1",
"rehype-highlight": "^5.0.2",
"rehype-raw": "^6.1.1",
"rehype-sanitize": "^5.0.1",
"remark-gfm": "^3.0.1",
"remark-highlight.js": "^7.0.1",
"remark-toc": "^8.0.1",
"swiper": "^8.3.2",
"web-vitals": "^2.1.0"
},
"scripts": {
"start": "react-scripts start",
"build": "CI=false && react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint ./",
"lint-fix": "eslint ./ --fix",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"postinstall": "husky install",
"predeploy": "npm build",
"deploy": "gh-pages -d build",
"start-api": "cd DevBootcamp_Backend && env/bin/flask run --no-debugger"
},
"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": {
"autoprefixer": "^10.2.5",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"gh-pages": "^4.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"postcss": "^8.4.14",
"prettier": "2.7.1",
"pretty-quick": "^3.1.3",
"tailwindcss": "^3.1.7"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"main": "postcss.config.js",
"keywords": [],
"author": "",
"license": "ISC"
}