forked from uwcse440/web-cse440-22sp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.56 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
{
"name": "web-cse440-22sp",
"version": "0.0.1",
"description": "",
"@comment scripts": [
"dev_serve: Dynamically serve from development.",
"prod_build: Build a production bundle.",
"prod_deploy: Create static files from a production bundle."
],
"scripts": {
"dev_serve": "node scripts/dev_serve.js",
"prod_build": "node scripts/prod_build.js",
"prod_deploy": "yarn react-snap"
},
"@comment reactSnap": [
"Configure react-snap:",
"- source: Path where scripts/prod_build.js will produce a production build.",
"- publicPath: Server relative path where build will be deployed.",
"",
"publicPath must match publicPathProd in paths.js"
],
"reactSnap": {
"source": "dist",
"publicPath": "/courses/cse440/22sp/"
},
"@comment dependencies": [
"mobx-react-router",
"- See https://github.com/superwf/mobx-react-router",
"- 2021-8-16 update to v7 for compatible with history v5, mobx v6, react-router v5 and path-to-regexp v6",
"- Appears to work fine with react-router v6"
],
"dependencies": {
"@emotion/react": "11.x",
"@emotion/styled": "11.x",
"@mui/icons-material": "5.x",
"@mui/material": "5.x",
"history": "5.x",
"luxon": "2.x",
"mobx": "6.x",
"mobx-react-lite": "3.x",
"mobx-react-router": "npm:@superwf/mobx-react-router@7.x",
"path-to-regexp": "6.x",
"react": "17.x",
"react-dom": "17.x",
"react-router": "6.x",
"react-router-dom": "6.x",
"yarn": "^1.22.22"
},
"@comment devDependencies": [],
"devDependencies": {
"@babel/core": "*",
"@babel/preset-env": "*",
"@babel/preset-react": "*",
"@mdx-js/loader": "2.x",
"@mdx-js/react": "2.x",
"@types/history": "*",
"@types/luxon": "*",
"@types/material-ui": "*",
"@types/mdx": "*",
"@types/mdx-js__react": "*",
"@types/node": "*",
"@types/react": "*",
"@types/react-dom": "*",
"@types/react-router": "*",
"@types/react-router-dom": "*",
"babel-loader": "*",
"eslint": "*",
"express": "*",
"html-webpack-plugin": "*",
"react-snap": "*",
"rimraf": "*",
"ts-loader": "*",
"tsconfig-paths-webpack-plugin": "*",
"typescript": "*",
"webpack": "*",
"webpack-dev-middleware": "*",
"webpack-hot-middleware": "*",
"webpack-merge": "*"
}
}