forked from mistakia/nano-community
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.61 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
{
"scripts": {
"dev": "concurrently \"yarn start\" \"yarn start:api\"",
"start": "webpack serve --mode=development --config internals/webpack/webpack.dev.babel.js --port 8081 --history-api-fallback",
"start:api": "NODE_ENV=development node server",
"deploy": "ipfs-deploy build/index.html",
"build": "cross-env NODE_ENV=production webpack --config internals/webpack/webpack.prod.babel.js --color --progress",
"lint": "eslint .",
"prettier": "prettier --write ."
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"connected-react-router": "^6.9.1",
"cors": "^2.8.5",
"debug": "^4.3.1",
"deep-extend": "^0.6.0",
"esm": "^3.2.25",
"express": "^4.17.1",
"express-favicon": "^2.0.1",
"express-jwt": "^6.0.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.95.4",
"moment": "^2.29.1",
"morgan": "^1.10.0",
"morgan-debug": "^2.0.0",
"mysql": "^2.18.1",
"node-cache": "^5.1.2",
"node-cron": "^3.0.0",
"node-fetch": "^2.6.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.3",
"react-router": "^5.2.0",
"redux-saga": "^1.1.3",
"serve-static": "^1.14.1",
"ws": "^7.4.4"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@babel/register": "^7.13.14",
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"babel-loader": "^8.2.2",
"babel-plugin-module-resolver": "^4.1.0",
"circular-dependency-plugin": "^5.2.2",
"compression-webpack-plugin": "^7.1.2",
"concurrently": "^6.0.2",
"cross-env": "^7.0.3",
"css-loader": "^5.2.1",
"deepmerge": "4.2.2",
"eslint": "^7.24.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.23.2",
"file-loader": "^6.2.0",
"html-inline-script-webpack-plugin": "^2.0.0",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.1",
"image-webpack-loader": "^7.0.1",
"ipfs-deploy": "^8.0.1",
"marked": "^2.0.3",
"nib": "^1.1.2",
"prettier": "^2.2.1",
"react-immutable-proptypes": "^2.2.0",
"react-router-dom": "^5.2.0",
"redux-immutable": "^4.0.0",
"style-loader": "^2.0.0",
"stylus": "^0.54.8",
"stylus-loader": "^5.0.0",
"timeago.js": "^4.0.2",
"webpack": "^5.32.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2",
"yargs": "^16.2.0"
}
}