-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
127 lines (127 loc) · 4.5 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "sorter-generator",
"version": "1.0.0",
"description": "web application that allows users to generate custom sorters and use said sorters",
"main": "index.js",
"scripts": {
"start": "node build/bundle.js",
"build:dev": "webpack --config webpack.client.js --mode development && webpack --config webpack.server.js --mode development",
"build:prod": "webpack --config webpack.server.js --mode production && webpack --config webpack.client.prod.js --mode production",
"heroku-postbuild": "npm install && npm run build:prod",
"dev": "npm-run-all --parallel dev:*",
"dev:client": "webpack --config webpack.client.js --mode development --watch",
"dev:server": "webpack --config webpack.server.js --mode development --watch",
"dev:run-server": "nodemon --watch build --exec \"node build/bundle.js\"",
"precommit": "pretty-quick --staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dusk252/sorter-generator.git"
},
"keywords": [
"sorter",
"generator",
"character"
],
"author": "Dusk252",
"license": "MIT",
"bugs": {
"url": "https://github.com/Dusk252/sorter-generator/issues"
},
"homepage": "https://github.com/Dusk252/sorter-generator#readme",
"sideEffects": [
"./src/client/index.js",
"./src/server.js",
"*.less",
"*.css"
],
"dependencies": {
"@ant-design/colors": "^4.0.5",
"@ant-design/icons": "^4.3.0",
"@babel/polyfill": "^7.12.1",
"@tanem/react-nprogress": "^3.0.47",
"antd": "^4.8.2",
"aws-sdk": "^2.792.0",
"axios": "^0.21.1",
"compression": "^1.7.4",
"connected-react-router": "^6.8.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-fileupload": "^1.2.0",
"express-jwt": "^6.0.0",
"file-loader": "^6.2.0",
"file-type": "^16.0.1",
"helmet": "^3.23.3",
"history": "^4.10.1",
"html-to-image": "^1.3.20",
"idb-keyval": "^3.2.0",
"joi": "^17.3.0",
"json-form-data": "^1.7.2",
"jsonwebtoken": "^8.5.1",
"lodash.merge": "^4.6.2",
"mongodb": "^3.6.3",
"morgan": "^1.10.0",
"nanoid": "^3.1.16",
"node-cache": "^5.1.2",
"passport": "^0.4.1",
"passport-custom": "^1.1.1",
"passport-google-oauth2": "^0.2.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"react": "16.13.0",
"react-dom": "16.13.0",
"react-helmet": "^6.1.0",
"react-lazy-load-image-component": "^1.5.0",
"react-redux": "7.2.0",
"react-responsive-masonry": "^2.1.0",
"react-router": "^5.2.0",
"react-router-config": "^5.1.1",
"react-scroll": "^1.8.1",
"react-spring": "^9.0.0-rc.3",
"redux": "4.0.5",
"redux-immutable-state-invariant": "^2.1.0",
"redux-saga": "^1.1.3",
"serialize-javascript": "^5.0.1",
"sharp": "^0.26.3",
"url-loader": "^4.1.1"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"compression-webpack-plugin": "^6.1.1",
"concurrently": "5.2.0",
"css-loader": "^4.2.0",
"dotenv-webpack": "^5.1.0",
"eslint": "^7.5.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.0.8",
"isomorphic-style-loader": "^5.1.0",
"keymirror": "^0.1.1",
"less": "^3.12.2",
"less-loader": "^7.1.0",
"lint-staged": "^10.5.1",
"nodemon": "^2.0.6",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"pretty-quick": "^2.0.2",
"prop-types": "^15.7.2",
"terser-webpack-plugin": "^5.0.3",
"webpack": "^5.4.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.0.2",
"webpack-merge": "^5.4.0",
"webpack-node-externals": "^2.5.2"
}
}