This repository has been archived by the owner on May 8, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.16 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
{
"name": "Tiny-universal-skeleton",
"version": "1.3.0",
"main": "src/server/index.js",
"description": "Tiny Universal Skeleton",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Metnew/tiny-universal-skeleton.git"
},
"dependencies": {
"chalk": "^2.3.0",
"express": "^4.16.2",
"lodash": "^4.17.4",
"morgan": "^1.9.0",
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"devDependencies": {
"assets-webpack-plugin": "^3.5.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-register": "6.26.0",
"babel-runtime": "^6.26.0",
"commitizen": "^2.9.6",
"eslint": "^4.10.0",
"eslint-config-standard": "^10.2.1",
"eslint-loader": "^1.9.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"jest": "^21.2.1",
"react-hot-loader": "^3.1.1",
"standard-version": "^4.2.0",
"validate-commit-msg": "^2.14.0",
"webpack": "^3.8.1",
"webpack-dev-middleware": "^1.12.0",
"webpack-get-code-on-done": "^1.0.11",
"webpack-hot-middleware": "^2.20.0",
"write-file-webpack-plugin": "^4.2.0"
},
"scripts": {
"test": "jest",
"cz": "git-cz",
"commitmsg": "validate-commit-msg",
"build": "npm run frontend_build && npm run server_build",
"server_build": "NODE_ENV=production webpack --config webpack_config/server/webpack.prod.babel.js",
"frontend_build": "NODE_ENV=production webpack --config webpack_config/client/webpack.prod.babel.js",
"start": "NODE_ENV=development babel-node ./src/server/index",
"release": "standard-version"
},
"engines": {
"node": ">=6"
},
"author": {
"name": "Vladimir Metnew",
"email": "[email protected]"
},
"keywords": [
"example",
"hmr",
"react",
"hot-reloading",
"universal",
"ssr",
"server-side rendering",
"hot"
]
}