This repository has been archived by the owner on Aug 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 2.07 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": "universal-react-base",
"version": "0.0.1",
"description": "Super basic example to get you started with Universal React/Redux (+ API requests). Lightweight and straightforward.",
"private": true,
"main": "./src/index.js",
"scripts": {
"start": "npm run build && npm run prod",
"prod": "NODE_ENV=production NODE_PATH=$NODE_PATH:./src/shared node --harmony . & json-server --watch db/db.json --port 3001",
"dev": "NODE_PATH=$NODE_PATH:./src/shared node --harmony . & json-server --watch db/db.json --port 3001",
"clean": "rimraf dist",
"build:webpack": "NODE_ENV=production webpack --progress --colors --config webpack.config.production.js",
"build": "npm run clean && npm run build:webpack"
},
"author": {
"name": "Kostas Vasileiou",
"email": "hello@vsl.io",
"url": "http://vsl.io"
},
"repository": {
"type": "git",
"url": "git@github.com:vslio/universal-react-base.git"
},
"license": "MIT",
"dependencies": {
"axios": "^0.9.1",
"babel-polyfill": "^6.7.4",
"ejs": "^2.4.1",
"express": "^4.13.4",
"history": "^2.0.1",
"react": "^15.0.0",
"react-dom": "^15.0.0",
"react-helmet": "^3.0.1",
"react-redux": "^4.4.1",
"react-router": "^2.0.1",
"redux": "^3.3.1"
},
"devDependencies": {
"babel-core": "^6.7.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.23.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"postcss-cssnext": "^2.5.2",
"postcss-import": "^8.1.0",
"postcss-loader": "^0.8.2",
"progress": "^1.1.8",
"rimraf": "^2.5.2",
"standard": "^6.0.8",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.12.14",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0",
"webpack-isomorphic-tools": "^2.2.44"
}
}