-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.toml
More file actions
90 lines (73 loc) · 1.69 KB
/
package.toml
File metadata and controls
90 lines (73 loc) · 1.69 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
name = ""
private = true
version = "0.0.0"
description = ""
[repository]
type = "git"
url = ""
[scripts]
init = "./commands/init" # $ npm run init
update = "./commands/update" # $ npm run update
preinstall = "npm cache clean"
precommit = "npm test"
test = "./commands/test" # $ npm test
start = "./commands/start" # $ npm start
[dependencies]
# ECMAScript 2015+
babel-core = "^5.8.24" # babel-core/polyfill
bound-native-methods = "^0.1.6"
isomorphic-fetch = "^2.1.1"
# React
react = "0.14.0-rc1"
react-dom = "0.14.0-rc1"
classnames = "^2.1.3"
# Redux
redux = "^3.0.0"
redux-actions = "^0.8.0"
redux-thunk = "^1.0.0"
redux-promise = "^0.5.0"
react-redux = "^2.1.2"
# CSS
"normalize.css" = "^3.0.3"
[devDependencies]
# Webpack
webpack = "^1.12.1"
babel-runtime = "^5.8.24"
babel-loader = "^5.3.2"
# Development Server
express = "^4.13.3"
webpack-dev-middleware = "^1.2.0"
webpack-hot-middleware = "^2.0.1"
# Hot Reload
babel-plugin-react-transform = "^1.0.3"
react-transform-hmr = "^0.1.4"
react-transform-catch-errors = "^0.1.2"
redbox-react = "^1.0.4"
# DevTools
redux-devtools = "^2.1.5"
redux-logger = "^1.0.9"
# Git Hooks
husky = "^0.10.1"
[engines]
node = ">=4.0.0"
[babel]
stage = 0
loose = "all"
experimental = true
optional = [
"runtime",
"minification.constantFolding"
]
plugins = [
"react-transform"
]
[babel.extra.react-transform]
[[transforms]]
transform = "react-transform-hmr"
imports = ["react"]
locals = ["module"]
[[transforms]]
transform = "react-transform-catch-errors"
imports = ["react", "redbox-react"]
[semistandard]
parser = "babel-eslint"