-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.92 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.92 KB
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
{
"name": "authority-react",
"version": "1.0.0",
"description": "AUTHORITY port to React/Express",
"main": "src/server/index.js",
"scripts": {
"build": "webpack --mode production",
"start": "npm run build && node src/server/index.js",
"client": "webpack serve --mode development --devtool inline-source-map --hot",
"server": "nodemon src/server/index.js",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"author": "Phil Scott",
"license": "ISC",
"dependencies": {
"@google-cloud/storage": "^5.14.2",
"async-foreach": "^0.1.3",
"axios": "^0.21.1",
"babel-polyfill": "^6.26.0",
"bcryptjs": "^2.4.3",
"beautify-json": "^1.0.1",
"boolean": "^3.1.2",
"chroma-js": "^2.1.2",
"color-thief-node": "^1.0.4",
"compression-webpack-plugin": "^6.1.1",
"cookie-session": "^1.4.0",
"copy-webpack-plugin": "^6.4.1",
"d3": "^7.0.1",
"express": "^4.16.3",
"express-rate-limit": "^5.2.6",
"foreach": "^2.0.5",
"is-number": "^7.0.0",
"js-file-download": "^0.4.12",
"md5": "^2.3.0",
"memory-cache": "^0.2.0",
"multer": "^1.4.3",
"mysql": "^2.18.1",
"node-color-log": "^5.3.0",
"node-cron": "^3.0.0",
"node-polyfill-webpack-plugin": "^1.1.4",
"nth-check": "^2.0.1",
"re-resizable": "^6.9.0",
"react": "^17.0.2",
"react-alert": "^7.0.3",
"react-bootstrap": "^1.6.1",
"react-data-table-component": "^7.0.0-rc2",
"react-dom": "^17.0.2",
"react-dropzone": "^11.4.2",
"react-hook-form": "^7.15.0",
"react-number-format": "^4.6.3",
"react-player": "^2.9.0",
"react-router": "^5.2.0",
"react-router-bootstrap": "^0.25.0",
"react-router-dom": "^5.2.0",
"react-select": "^4.3.1",
"react-select-search": "^3.0.8",
"react-spinners": "^0.11.0",
"react-table": "^7.7.0",
"react-tooltip": "^4.2.21",
"request-ip": "^2.1.3",
"rich-markdown-editor": "^11.21.3",
"styled-components": "^5.3.0",
"time-ago": "^0.2.1",
"use-debounce": "^7.0.0",
"validator": "^13.6.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.0.0",
"@emotion/babel-plugin": "^11.3.0",
"babel-eslint": "^10.0.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^1.0.0",
"concurrently": "^4.0.0",
"css-loader": "^5.2.6",
"dotenv": "^10.0.0",
"eslint": "^5.0.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"nodemon": "^1.17.3",
"react-discord-invite": "^3.0.2",
"style-loader": "^3.1.0",
"url-loader": "^4.1.1",
"webpack": "^5.44.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.1.3"
}
}