-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.62 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "react-hot-boilerplate",
"version": "1.0.0",
"description": "Boilerplate for ReactJS project with hot code reloading",
"scripts": {
"load": "npm install && typings install",
"start": "ts-babel-node tools/srcServer.ts",
"test": "npm run test:build && mocha ./tests/globals \"tests/**/tests.js\"",
"test:watch": "npm-run-all --parallel test:build:watch test:mocha-watch",
"test:build": "ts-babel-node tools/testBuild.ts",
"test:build:watch": "ts-babel-node tools/testBuild.watch.ts",
"test:old": "mocha-webpack --require ./tests/globals --webpack-config webpack.config.test.js \"tests/**/index.tsx\"",
"test:mocha-watch": "mocha --watch ./tests/globals \"tests/**/tests.js\"",
"clean-dist": "node_modules/.bin/rimraf ./dist && mkdir dist",
"build:html": "ts-babel-node tools/buildHtml.ts",
"prebuild": "npm-run-all clean-dist test build:html",
"build": "ts-babel-node tools/build.ts",
"postbuild": "ts-babel-node tools/distServer.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/gaearon/react-hot-boilerplate.git"
},
"keywords": [
"react",
"reactjs",
"boilerplate",
"hot",
"reload",
"hmr",
"live",
"edit",
"webpack"
],
"author": "Dan Abramov <dan.abramov@me.com> (http://github.com/gaearon)",
"license": "MIT",
"bugs": {
"url": "https://github.com/gaearon/react-hot-boilerplate/issues"
},
"homepage": "https://github.com/gaearon/react-hot-boilerplate",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.18.0",
"babel-core": "^6.0.20",
"babel-eslint": "^4.1.3",
"babel-loader": "^6.0.1",
"babel-plugin-react-html-attrs": "^2.0.0",
"babel-preset-airbnb": "^2.1.1",
"babel-preset-es2015": "^6.0.15",
"babel-preset-react": "^6.0.15",
"babel-preset-stage-0": "^6.0.15",
"babel-register": "6.8.0",
"cheerio": "^0.20.0",
"colors": "1.1.2",
"css-loader": "^0.23.1",
"enzyme": "2.2.0",
"eslint": "^1.10.3",
"eslint-plugin-react": "^3.6.2",
"eventsource-polyfill": "0.9.6",
"expect": "1.19.0",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^2.0.0-beta.4",
"file-loader": "0.8.5",
"jsdom": "8.5.0",
"jsdom-global": "2.1.0",
"json-loader": "^0.5.4",
"mocha": "2.4.5",
"mocha-webpack": "^0.7.0",
"nock": "8.0.0",
"npm-run-all": "^3.1.1",
"open": "0.0.5",
"react-addons-test-utils": "^15.3.2",
"react-hot-loader": "^3.0.0-beta.1",
"redux-immutable-state-invariant": "^1.2.4",
"redux-mock-store": "^1.0.2",
"rimraf": "2.5.2",
"style-loader": "^0.13.1",
"ts-loader": "^0.9.5",
"tslint": "^3.15.1",
"typescript": "^2.0.3",
"typings": "^1.4.0",
"url-loader": "0.5.7",
"webpack-dev-middleware": "^1.8.4",
"webpack-dev-server": "^2.1.0-beta.9",
"webpack-hot-middleware": "^2.13.1",
"webpack-notifier": "^1.4.1"
},
"dependencies": {
"@types/autobind-decorator": "^1.3.2",
"autobind-decorator": "^1.3.4",
"axios": "^0.15.3",
"compression": "^1.6.2",
"immutable": "^3.8.1",
"jquery": "2.2.3",
"react": "^15.0.1",
"react-bootstrap": "^0.30.7",
"react-bootstrap-date-picker": "^4.0.0",
"react-dom": "^15.0.1",
"react-grid-system": "^2.2.0",
"react-redux": "^4.4.5",
"react-router": "^2.8.1",
"react-router-redux": "^4.0.7",
"react-select": "^1.0.0-rc.2",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0",
"systemjs": "^0.19.39",
"toastr": "2.1.2",
"ts-babel-node": "^1.1.1",
"ts-node": "^1.6.1",
"typescript": "^2.1.4",
"webpack": "^2.1.0-beta.21"
}
}