forked from samuxyz/instastack
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.57 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
{
"name": "instastack-12factors",
"version": "1.0.0",
"description": "A sample app built with Node and React to illustrate the 12 factors",
"main": "server/server.js",
"repository": "https://github.com/schaable/instastack-12factors",
"scripts": {
"dev": "yarn build && node ./dist/server.js",
"postinstall": "yarn build",
"build-client": "webpack -p",
"build-server": "babel -d ./dist ./server -s",
"build": "yarn build-client && yarn build-server",
"start": "node ./dist/server.js",
"test": "jest"
},
"babel": {
"presets": [
"es2015"
]
},
"keywords": [
"12factors",
"heroku",
"sample-app"
],
"author": "Luis Schaab",
"license": "ISC",
"engines": {
"node": "6.9.5",
"yarn": "*"
},
"devDependencies": {
"webpack-dev-server": "1.16.2"
},
"dependencies": {
"babel-cli": "6.16.0",
"babel-core": "6.17.0",
"babel-loader": "6.2.5",
"babel-polyfill": "6.16.0",
"babel-preset-es2015": "6.16.0",
"babel-preset-react": "6.16.0",
"body-parser": "1.15.2",
"cool-ascii-faces": "^1.3.4",
"css-loader": "0.25.0",
"express": "4.14.0",
"immutable": "3.8.1",
"install": "0.8.1",
"jest": "^20.0.4",
"morgan": "1.7.0",
"react": "15.3.2",
"react-dom": "15.3.2",
"react-hot-loader": "3.0.0-beta.5",
"react-redux": "4.4.5",
"react-router": "2.8.1",
"redux": "3.6.0",
"redux-saga": "0.12.0",
"requireg": "^0.1.7",
"style-loader": "0.13.1",
"webpack": "1.13.2",
"webpack-merge": "0.14.1",
"webpack-validator": "2.2.9"
}
}