-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
75 lines (75 loc) · 2.06 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
{
"name": "react-template-nodejs",
"version": "1.0.0",
"description": "",
"main": "server/app.mjs",
"author": "Peter Ilfrich, Dain Liffman, Nick Waywood",
"scripts": {
"start": "webpack-dev-server -d --hot",
"build": "webpack -p",
"serve": "node -r @std/esm server/app",
"serve:watch": "nodemon -r @std/esm --watch server server/app",
"flow": "flow",
"lint": "eslint \"**/*.{js,mjs}\"",
"format": "eslint --fix \"**/*.{js,mjs}\"",
"precommit": "lint-staged"
},
"lint-staged": {
"**/*.{js,mjs}": "eslint"
},
"@std/esm": {
"cjs": true
},
"dependencies": {
"@babel/polyfill": "^7.4.4",
"@emotion/core": "^10.0.10",
"@emotion/styled": "^10.0.12",
"@std/esm": "^0.25.5",
"axios": "^0.18.1",
"emotion": "^9.2.12",
"koa": "^2.6.2",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"koa-send": "^5.0.0",
"koa-static": "^5.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-dom": "^4.3.1"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "8.2.2",
"babel-loader": "^8.0.6",
"babel-plugin-emotion": "^9.1.0",
"babel-plugin-module-resolver": "^3.1.1",
"circular-dependency-plugin": "^5.0.2",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^2.10.0",
"eslint-import-resolver-babel-module": "^5.1.0",
"eslint-plugin-flowtype": "2.46.1",
"eslint-plugin-flowtype-errors": "3.5.1",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^2.7.0",
"eslint-plugin-react": "^7.13.0",
"file-loader": "^1.1.11",
"flow-bin": "^0.101.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.0.0-rc.13",
"lint-staged": "^8.2.1",
"nodemon": "^1.19.1",
"prettier": "^1.18.2",
"style-loader": "^0.20.3",
"url-loader": "^1.1.2",
"webpack": "^4.34.0",
"webpack-cli": "^3.3.4",
"webpack-dev-server": "^3.7.2"
}
}