-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.89 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.89 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
{
"name": "2140-dev.github.io",
"homepage": "https://2140.dev",
"version": "0.1.0",
"description": "A basic setup for a React app using TypeScript, MUI, ESLint, and Prettier.",
"scripts": {
"start": "export SET NODE_OPTIONS=--openssl-legacy-provider && react-scripts start",
"build": "export SET NODE_OPTIONS=--openssl-legacy-provider && react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"dependencies": {
"@cascadia-code/scroll-to-hash-element": "^2.0.2",
"@emotion/react": "^11.0.0",
"@emotion/styled": "^11.0.0",
"@mui/material": "^5.0.0",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.3.3",
"@types/react-router-hash-link": "^2.4.9",
"@types/react-scroll": "^1.8.10",
"browser-router": "^0.2.0",
"lodash": "^4.17.21",
"markdown-to-jsx": "^7.4.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router": "^6.23.1",
"react-router-dom": "^6.23.1",
"react-router-hash-link": "^2.4.3",
"react-scroll": "^1.9.0"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@types/lodash": "^4.14.202",
"@types/react": "18.2.19",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"gh-pages": "^6.1.1",
"prettier": "^2.3.2",
"react-markdown": "^8.0.4",
"react-scripts": "^5.0.1",
"typescript": "^4.3.2",
"web-vitals": "^3.5.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}