-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.81 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.81 KB
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
{
"name": "reactjs-boilerplate",
"version": "0.2.0",
"private": true,
"description": "",
"license": "BSD-3-Clause",
"workspaces": [
"client",
"server"
],
"dependencies": {
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-react-transform": "^3.0.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.16.0",
"cross-env": "^5.1.4",
"webpack": "^4.5.0"
},
"devDependencies": {
"@bitchcraft/injector": "1.0.3",
"autoprefixer": "^9.6.1",
"babel-cli": "^6.18.0",
"babel-core": "^6.20.0",
"babel-eslint": "^10.0.2",
"babel-loader": "^7.1.5",
"cache-loader": "^4.1.0",
"css-loader": "^3.1.0",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-formatter-pretty": "^2.1.1",
"eslint-plugin-flowtype": "^3.12.2",
"eslint-plugin-flowtype-errors": "^4.1.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"eventsource-polyfill": "^0.9.6",
"expect": "^24.8.0",
"fetch-mock": "^7.3.9",
"file-loader": "^4.1.0",
"flow-bin": "^0.104.0",
"handlebars": "^4.0.11",
"handlebars-loader": "^1.7.0",
"hbs-cli": "^1.1.1",
"identity-obj-proxy": "^3.0.0",
"less-loader": "^5.0.0",
"mkdirp": "^0.5.1",
"node-sass": "^4.8.3",
"nodemon": "^1.17.4",
"npm-run-all": "^4.1.2",
"postcss-loader": "^3.0.0",
"react-transform-hmr": "^1.0.1",
"sass-loader": "^7.0.3",
"thread-loader": "^2.1.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"url-loader": "^2.1.0",
"webpack-cli": "^3.0.8",
"webpack-hot-middleware": "^2.21.2"
},
"config": {
"hostname": "localhost",
"logpath": "server:*,webpack:*,-webpack:dev:*",
"port": 3001
},
"scripts": {
"bundle": "run-s prestart bundle:js render:template",
"bundle:js": "cross-env yarn install && cross-env BABEL_ENV=production NODE_ENV=production webpack",
"docs": "jsdoc -c jsdoc.json",
"flow": "flow",
"lint": "eslint --cache --format=eslint-formatter-pretty .",
"nodemon": "nodemon --config nodemon.json --exec yarn run run-p run:local:*",
"prestart": "yarn install",
"render:template": "mkdirp ./build && hbs --data '{ \"bundle\": \"bundle.js\" }' ./server/views/main.handlebars -o ./build",
"run:local:dev-server": "cross-env NODE_ENV=development WEBPACK_HOT=true API_ENDPOINT=//$npm_package_config_hostname:$npm_package_config_port DEBUG=$npm_package_config_logpath node --max_old_space_size=4096 server/index.js",
"start": "yarn run nodemon"
},
"author": {
"name": "Josh Li",
"url": "https://github.com/maddrag0n"
},
"contributors": [
{
"name": "Thiemo Krause",
"url": "https://github.com/thiemok"
},
{
"name": "David Silva",
"url": "https://github.com/zGrav"
}
]
}