-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.19 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.19 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
{
"name": "protium",
"version": "0.22.0-0",
"description": "A micro framework for building universal React/Redux apps.",
"main": "index.js",
"scripts": {
"build": "npm run build-app && npm run build-docs",
"build-app": "webpack",
"build-docs": "esdoc -c esdoc.json",
"dev": "webpack -w",
"prepublish": "npm run build-app"
},
"repository": {
"type": "git",
"url": "https://github.com/3five/protium.git"
},
"author": "Jon Jaques <jon@3five.com>",
"license": "MIT",
"peerDependencies": {
"react": "^15.4.1",
"react-dom": "^15.4.1",
"babel-loader": "^6.2.8",
"react-hot-loader": "^3.0.0-beta.6",
"source-map-loader": "^0.1.5",
"webpack": "^2.1.0-beta.22"
},
"dependencies": {
"ansi-to-html": "^0.4.1",
"clean-webpack-plugin": "^0.1.14",
"custom-extend": "^1.0.0",
"extract-text-webpack-plugin": "^2.0.0-beta.4",
"flux-standard-action": "^1.0.0",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.2",
"pretty-error": "^2.0.2",
"qs": "^6.3.0",
"react": "^15.4.1",
"react-cookie": "^1.0.2",
"react-dom": "^15.4.1",
"react-helmet": "^3.2.2",
"react-hot-loader": "^3.0.0-beta.6",
"react-redux": "^4.4.6",
"react-router": "^2.8.1",
"react-router-bootstrap": "^0.23.1",
"react-router-redux": "^4.0.7",
"react-router-scroll": "^0.4.1",
"redux": "^3.5.2",
"redux-actions": "^1.1.0",
"redux-connect": "^4.0.0",
"redux-devtools": "^3.3.1",
"redux-promise": "^0.5.3",
"serialize-javascript": "^1.3.0",
"source-map-loader": "^0.1.5",
"source-map-support": "^0.4.6",
"webpack": "^2.1.0-beta.17",
"webpack-assets-plugin": "0.0.3",
"webpack-external-require": "^1.0.0",
"webpack-node-externals": "^1.5.4"
},
"devDependencies": {
"babel-core": "^6.18.2",
"babel-loader": "^6.2.8",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.3.13",
"babel-register": "^6.18.0",
"esdoc": "^0.4.8",
"esdoc-es7-plugin": "0.0.3",
"webpack": "^2.2.1",
"webpack-dev-middleware": "^1.11.0",
"webpack-hot-middleware": "^2.18.0"
}
}