This repository has been archived by the owner on Feb 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 2 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
{
"name": "anime-volunteer-portal",
"version": "1.0.0",
"description": "Volunteer Portal for the Anime 2019 convention.",
"main": "src/index.tsx",
"license": "MIT",
"private": true,
"dependencies": {
"@date-io/moment": "^1.3.13",
"@material-ui/core": "^4.9.0",
"@material-ui/icons": "^4.5.1",
"@material-ui/pickers": "^3.2.10",
"email-validator": "^2.0.4",
"material-ui-pickers": "^2.2.4",
"moment": "^2.24.0",
"moment-timezone": "^0.5.27",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-markdown": "^4.3.1",
"react-router-dom": "^5.1.2"
},
"devDependencies": {
"@types/chai": "^4.2.8",
"@types/jest": "^24.9.1",
"@types/moment-timezone": "^0.5.12",
"@types/node": "^11.15.5",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"@types/react-router-dom": "^4.3.5",
"bind-decorator": "^1.0.11",
"chai": "^4.2.0",
"cross-env": "^5.2.1",
"escape-string-regexp": "^2.0.0",
"jest-localstorage-mock": "^2.4.0",
"jest-mock-console": "^1.0.0",
"mockttp": "^0.17.3",
"react-app-rewired": "^2.1.5",
"react-scripts": "^3.3.0",
"serve": "^11.3.0",
"source-map-explorer": "^1.8.0",
"typescript": "^3.7.5",
"workbox-webpack-plugin": "^4.3.1"
},
"browserslist": [
">1%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"eslintConfig": {
"extends": "react-app"
},
"scripts": {
"analyze": "source-map-explorer build/static/js/2.*",
"start-gophers": "cross-env REACT_APP_API_HOST=https://gophers.team react-app-rewired start",
"start-stewards": "cross-env REACT_APP_API_HOST=https://stewards.team react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"serve": "serve -l tcp://0.0.0.0:8080 -s build"
}
}