-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
111 lines (111 loc) · 3.36 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
101
102
103
104
105
106
107
108
109
110
111
{
"name": "membership-portal-ui",
"version": "1.0.0",
"private": true,
"proxy": "https://acmucsd-membership-portal-api.herokuapp.com",
"dependencies": {
"@ant-design/icons": "^4.0.6",
"antd": "3.24.3",
"antd-img-crop": "^4.0.2",
"babel-plugin-import": "^1.12.0",
"connected-react-router": "^6.5.2",
"copy-to-clipboard": "^3.3.1",
"customize-cra": "^0.8.0",
"file-saver": "^2.0.5",
"formik": "^2.0.3",
"history": "^4.10.1",
"immutable": "^3.8.1",
"jest": "24.9.0",
"jszip": "^3.10.1",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"lodash": "^4.17.15",
"moment": "^2.29.4",
"prop-types": "^15.6.2",
"react": "^16.13.1",
"react-app-rewired": "^2.1.3",
"react-dom": "^16.13.1",
"react-dropdown": "^1.9.2",
"react-ga": "^2.7.0",
"react-iframe": "^1.8.0",
"react-infinite-scroller": "^1.2.4",
"react-lazy-load-image-component": "^1.5.0",
"react-redux": "^7.1.0",
"react-router": "^5.0.0",
"react-router-dom": "^5.1.2",
"react-scripts": "3.2.0",
"react-sizes": "^2.0.0",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"seamless-immutable": "^7.1.3",
"ucsd-quarters-years": "^1.1.0",
"webpack": "4.41.0",
"yup": "^0.29.3"
},
"scripts": {
"build:dev": "dotenv -e .env.development react-app-rewired build",
"build": "dotenv -e .env.production react-app-rewired build",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"eject": "react-scripts eject",
"lint": "eslint \"**/*.{ts,tsx}\" && npx stylelint \"**/*.less\"",
"lint:fix": "eslint \"**/*.{ts,tsx}\" --fix && npx stylelint \"**/*.less\" --fix",
"start": "dotenv -e .env.development react-app-rewired start",
"test": "jest",
"test:watch": "jest --watch"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^25.2.1",
"@types/lodash": "^4.14.150",
"@types/node": "^13.13.2",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"@types/react-redux": "^7.1.7",
"@types/react-router-dom": "^5.1.4",
"@types/react-sizes": "^2.0.0",
"@types/webpack-env": "^1.15.2",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.0.0",
"babel-eslint": "10.0.3",
"babel-jest": "^24.8.0",
"coveralls": "^3.0.6",
"cross-env": "^7.0.2",
"dotenv-cli": "^4.0.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.4.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^8.0.2",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4",
"postcss": "^8.4.5",
"postcss-less": "^5.0.0",
"prettier": "^2.0.5",
"redux-mock-store": "^1.5.3",
"stylelint": "^14.2.0",
"stylelint-config-standard": "^24.0.0",
"stylelint-order": "^5.0.0",
"typescript": "^3.8.3"
}
}