forked from thesunny/meteor-webpack-react-kickstart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.37 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
{
"name": "kickstart",
"description": "Kickstart a project with the most productive stack you ever used",
"version": "0.2.0",
"repository": {
"type": "git",
"url": "https://github.com/thereactivestack/kickstart.git"
},
"scripts": {
"lint": "eslint --ext .js,.jsx .",
"test": "karma start --single-run"
},
"license": "MIT",
"dependencies": {
"es6-promise": "^3.0.2",
"react": "^0.13.3",
"react-mixin": "^3.0.0",
"react-router": "^1.0.0-rc1"
},
"devDependencies": {
"babel-core": "^5.8.24",
"babel-eslint": "^4.1.3",
"babel-loader": "^5.3.2",
"babel-plugin-react-transform": "^1.0.5",
"css-loader": "^0.19.0",
"eslint": "^1.5.1",
"eslint-plugin-react": "^3.4.2",
"expect": "^1.11.1",
"file-loader": "^0.8.4",
"jasmine-core": "^2.3.4",
"karma": "^0.13.10",
"karma-chrome-launcher": "^0.2.0",
"karma-jasmine": "^0.3.6",
"karma-sourcemap-loader": "^0.3.5",
"karma-webpack": "^1.7.0",
"node-sass": "^3.3.3",
"null-loader": "^0.1.1",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.0",
"redbox-react": "^1.0.6",
"sass-loader": "^2.0.1",
"style-collector-loader": "^0.1.0",
"style-loader": "^0.12.4",
"url-loader": "^0.5.6",
"webpack": "^1.12.1",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.0.0"
}
}