-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
100 lines (100 loc) · 2.78 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
{
"name": "jsa-web",
"version": "1.0.0",
"description": "CMUJSA website",
"main": "lib/index.js",
"scripts": {
"doc-lib": "jsdoc -d doc/lib -c .jsdoc.json README.md lib",
"doc-src": "jsdoc -d doc/src -c .jsdoc.json README.md src",
"live": "node build.js live",
"watch": "node build.js watch",
"build": "node build.js",
"dist": "node build.js production",
"prepare": "node build.js production",
"lint": "eslint *.js src lib",
"start": "node lib/index.js"
},
"files": [
"dist",
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Rikilele/JSA-web.git"
},
"contributors": [
"Stan Zhang <[email protected]>"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/Rikilele/JSA-web/issues"
},
"homepage": "https://github.com/Rikilele/JSA-web#readme",
"devDependencies": {
"autoprefixer": "^7.1.2",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-minify": "^0.2.0",
"babel-preset-react": "^6.24.1",
"bundle-loader": "^0.5.5",
"classnames": "^2.2.5",
"clean-webpack-plugin": "^0.1.16",
"css-loader": "^0.28.4",
"csv-loader": "^2.1.1",
"eslint": "^4.3.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-react": "^7.1.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.29.0",
"jsdoc": "^3.5.5",
"less": "^2.7.2",
"less-loader": "^4.0.5",
"loader-utils": "^1.1.0",
"normalize.css": "^7.0.0",
"postcss-loader": "^2.0.6",
"progress": "^2.0.0",
"prop-types": "^15.5.10",
"raw-loader": "^4.0.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-loader": "^3.0.0-beta.7",
"react-key-handler": "^0.3.0",
"react-router": "^4.1.2",
"react-router-dom": "^4.1.2",
"react-transition-group": "^2.2.0",
"style-loader": "^0.18.2",
"terser-webpack-plugin": "^5.3.1",
"uglifyjs-webpack-plugin": "^2.2.0",
"url-loader": "^0.5.9",
"webpack": "^3.3.0",
"webpack-dev-server": "^2.5.1"
},
"dependencies": {
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@material-ui/core": "^4.11.3",
"@mui/icons-material": "^5.0.0",
"@mui/material": "^5.0.0",
"body-parser": "^1.18.2",
"d3-dsv": "^1.0.8",
"express": "^4.16.3",
"express-session": "^1.15.6",
"get-port": "^5.1.1",
"npm": "^6.9.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"react-iframe": "^1.8.0",
"react-markdown": "^5.0.3",
"session-file-store": "^1.2.0",
"uuid": "^3.2.1"
},
"engine": {
"npm": ">=3.0.0",
"node": ">=8.0.0"
}
}