-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.1 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
{
"name": "comiccruncher-web",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=14.20.0",
"yarn": "^1.22.0"
},
"scripts": {
"dev": "node server.js",
"build": "next build",
"start": "node server.js",
"clean": "rm -rf ./node_modules ./build"
},
"browser": {
"express": false,
"winston": false,
"cookie-parser": false,
"uuid": false
},
"dependencies": {
"axios": "^0.19.0",
"cookie-parser": "^1.4.3",
"countup.js": "^1.9.3",
"dotenv": "^16.1.4",
"emotion": "^9.2.12",
"emotion-server": "^9.2.12",
"express": "^4.17.1",
"next": "^8.1.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-autosuggest": "^9.4.2",
"react-countup": "^4.0.0-alpha.6",
"react-debounce-input": "^3.2.0",
"react-dom": "^16.8.6",
"react-emotion": "^9.2.10",
"react-ga": "^2.5.6",
"react-lazy-load": "^3.0.13",
"react-modal": "^3.6.1",
"react-topbar-progress-indicator": "^2.0.0",
"rebass": "^3.0.0-9",
"recharts": "^1.4.1",
"universal-cookie": "^3.0.7",
"uuid": "^3.3.2",
"winston": "^3.1.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-transform-new-target": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-plugin-emotion": "^9.2.11",
"cross-env": "^5.2.0",
"eslint": "^5.6.1",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-prettier": "^2.7.0",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-security": "^1.4.0",
"prettier": "^1.14.3"
}
}