-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 2.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
{
"name": "realworld-riot-effector-universal-hot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "rm -rf ./build && mkdir ./build && NODE_ENV=production webpack --config src/config.client.js --mode=production && NODE_ENV=production webpack --config=./src/config.server.js --mode=production",
"hot": "rm -rf ./build && mkdir ./build && NODE_ENV=development webpack -d --config=./src/config.client.js --mode=development && NODE_ENV=development webpack -d --config=./src/config.server.js --mode=development && NODE_ENV=development node ./src/dev_server",
"start": "npm run build && NODE_ENV=production node ./src/server",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"@riotjs/hydrate": "^4.0.0",
"@riotjs/ssr": "^4.0.0",
"apicache": "^1.4.0",
"axios": "^0.19.0",
"babel-loader": "^8.0.6",
"cookie-encrypter": "^1.0.1",
"cookie-parser": "^1.4.4",
"deep-equal": "^1.0.1",
"effector": "^19.1.0",
"eslint-utils": "^1.4.3",
"express": "^4.17.1",
"history": "^4.9.0",
"lodash": "^4.17.15",
"marked": "^0.7.0",
"mobx": "^5.10.0",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"riot": "^4.0.2",
"riot-control": "^1.0.0",
"riotjs": "^1.0.4",
"serve-favicon": "^2.5.0",
"universal-router": "^8.2.0",
"url-parse": "^1.4.7",
"webpack-node-externals": "^1.7.2"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@riotjs/compiler": "^4.2.4",
"@riotjs/hot-reload": "^4.0.0",
"@riotjs/webpack-loader": "^4.0.0",
"babel-eslint": "^10.0.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-html": "^5.0.5",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-riot": "^0.1.8",
"eslint-plugin-standard": "^4.0.0",
"fast-async": "^6.3.8",
"react-hot-loader": "^4.9.0",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.2",
"webpack-dev-middleware": "^3.7.0",
"webpack-hot-middleware": "^2.25.0"
}
}