-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
78 lines (78 loc) · 2.36 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
78
{
"name": "react-starter",
"version": "1.0.0",
"description": "Starter Kit for new web development using react",
"scripts": {
"start": "npm-run-all --parallel _security-check _lint _open:src",
"start:prod": "babel-node tools/prodServer.js",
"share": "lt --port 80 --subdomain xevolvers",
"prebuild": "npm-run-all --parallel _lint _clean-dist _security-check",
"build": "babel-node tools/build.js",
"postbuild": "npm run start:prod",
"deploy": "echo \"Error: no deploy defined\" && exit 1",
"_open:src": "babel-node tools/devServer.js",
"_lint": "eslint ./src ./tools --color -f table",
"_security-check": "nsp check",
"_clean-dist": "rimraf ./dist && mkdir dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elios264/react-starter.git"
},
"keywords": [
"react",
"redux",
"webpack2"
],
"author": "elios264",
"license": "ISC",
"bugs": {
"url": "https://github.com/elios264/react-starter/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/elios264/react-starter#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.20.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.9",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"chalk": "^1.1.3",
"compression": "^1.6.2",
"css-loader": "^0.26.1",
"eslint": "^3.12.2",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-no-loops": "^0.3.0",
"eslint-plugin-react": "^6.8.0",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^2.0.0-beta.4",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.24.1",
"localtunnel": "^1.8.2",
"node-sass": "^4.0.0",
"npm-run-all": "^3.1.2",
"nsp": "^2.6.2",
"open": "0.0.5",
"react-hot-loader": "^3.0.0-beta.6",
"rimraf": "^2.5.4",
"sass-loader": "^4.1.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^2.1.0-beta.28",
"webpack-dev-server": "^2.1.0-beta.12",
"webpack-md5-hash": "0.0.5"
},
"dependencies": {
"babel-runtime": "^6.20.0",
"moment": "^2.17.1",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-redux": "^5.0.1",
"react-router": "^3.0.0",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0"
}
}