-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
92 lines (92 loc) · 2.57 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
{
"name": "uwer",
"version": "1.0.1",
"engines": {
"npm": "6.14.4",
"node": "14.11.0"
},
"description": "UW Event Registration",
"author": "UW-IT Enterprise Web Services and Events <ews-team@uw.edu>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/uwwebservices/UWER.git"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"scripts": {
"dev": "nodemon --inspect --config nodemon.json",
"prebuild": "rm -rf dist",
"build": "cross-env-shell NODE_ENV=production \"babel src/backend -s -D -d dist/backend && webpack --config webpack.config.js\"",
"start": "node dist/backend",
"test": "jest"
},
"dependencies": {
"@babel/runtime": "7.12.5",
"@material-ui/core": "4.11.0",
"body-parser": "1.19.0",
"cookie-parser": "1.4.5",
"csv-express": "1.2.2",
"ews-api-lib": "git+https://github.com/uwwebservices/ews-api-lib.git#0.2.8",
"express": "4.17.1",
"express-session": "1.17.1",
"graphite": "0.1.4",
"helmet": "4.2.0",
"memorystore": "1.6.4",
"morgan": "1.10.0",
"passport": "0.4.1",
"passport-saml": "1.3.5",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-fontawesome": "1.7.1",
"react-notification-system": "0.4.0",
"react-redux": "7.2.2",
"react-router-dom": "5.2.0",
"redux": "4.0.5",
"redux-logger": "3.0.6",
"redux-thunk": "2.3.0",
"response-time": "2.3.2",
"webpack": "5.4.0"
},
"devDependencies": {
"@babel/cli": "7.12.1",
"@babel/core": "7.12.3",
"@babel/node": "7.12.6",
"@babel/plugin-transform-runtime": "7.12.1",
"@babel/preset-env": "7.12.1",
"@babel/preset-react": "7.12.5",
"babel-loader": "8.2.1",
"babel-plugin-module-resolver": "4.0.0",
"cross-env": "7.0.2",
"css-loader": "5.0.1",
"eslint": "7.13.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-react": "7.21.5",
"file-loader": "6.2.0",
"html-webpack-plugin": "4.5.0",
"jest": "26.6.3",
"jest-puppeteer-docker": "1.4.2",
"mini-css-extract-plugin": "1.3.1",
"node-sass": "5.0.0",
"nodemon": "2.0.6",
"optimize-css-assets-webpack-plugin": "5.0.4",
"puppeteer": "5.5.0",
"sass-loader": "10.1.0",
"style-loader": "2.0.0",
"terser-webpack-plugin": "5.0.3",
"url-loader": "4.1.1",
"webpack-cli": "4.2.0",
"webpack-dev-middleware": "4.0.2",
"webpack-hot-middleware": "2.25.0"
}
}