-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
103 lines (103 loc) · 3.32 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
{
"name": "membership-portal-ui",
"version": "1.0.0",
"description": "frontend for the ACM membership portal",
"private": true,
"main": "index.js",
"scripts": {
"test": "jest --config jest.config.json",
"build": "NODE_ENV=production webpack --progress --color",
"dev": "WEBPACK=true NODE_ENV=development webpack-dev-server --cache --progress --color --mode development",
"lint": "eslint --fix --color 'src/**/*.js*' 'tests/**/*.js*' && prettier --write 'src/**/*.js*' 'tests/**/*.js*' 'src/**/*.css' 'src/**/*.scss'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uclaacm/membership-portal-ui.git"
},
"author": "nkansal96",
"contributors": [
{
"name": "Dylon Tjanaka",
"url": "https://dtjanaka.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/uclaacm/membership-portal-ui/issues"
},
"homepage": "https://github.com/uclaacm/membership-portal-ui#readme",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.1.0",
"@babel/plugin-transform-object-assign": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@types/enzyme": "^3.1.14",
"@types/jest": "^23.3.2",
"@types/react": "^16.4.14",
"@types/react-dom": "^16.0.8",
"@types/react-redux": "^6.0.9",
"@types/react-router-dom": "^4.3.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"cache-loader": "^1.2.2",
"clean-webpack-plugin": "^4.0.0",
"compression-webpack-plugin": "^11.1.0",
"css-loader": "^7.1.2",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"enzyme-to-json": "^3.3.4",
"eslint": "^5.7.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.25.1",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"file-loader": "^6.2.0",
"html-minifier": "^3.5.20",
"html-webpack-plugin": "^5.6.2",
"husky": "^1.0.1",
"jest": "^23.6.0",
"lint-staged": "^7.3.0",
"mini-css-extract-plugin": "^2.9.1",
"prettier": "^1.14.3",
"react-test-renderer": "^16.5.2",
"regenerator-runtime": "^0.12.1",
"sass-loader": "^16.0.2",
"script-ext-html-webpack-plugin": "^2.1.5",
"source-map-loader": "^0.2.4",
"style-loader": "^0.23.0",
"terser-webpack-plugin": "^5.3.10",
"thread-loader": "^1.2.0",
"webpack": "^5.95.0",
"webpack-bundle-analyzer": "^3.0.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.0.0"
},
"dependencies": {
"@react-oauth/google": "^0.12.1",
"babel-polyfill": "^6.23.0",
"chart.js": "^2.7.2",
"dompurify": "^0.9.0",
"history": "^4.7.2",
"immutable": "^3.8.1",
"moment": "^2.18.1",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-chartjs": "^1.2.0",
"react-chartjs-2": "^2.7.0",
"react-datepicker": "^1.6.0",
"react-dom": "^16.5.2",
"react-input-mask": "^0.8.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-router-redux": "^5.0.0-alpha.4",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"sass": "^1.80.2",
"whatwg-fetch": "^2.0.3"
}
}