forked from erizocosmico/react-es6-webpack-karma-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.73 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
{
"name": "react-es6-webpack-karma-boilerplate",
"version": "1.0.0",
"description": "Boilerplate for kick starting a React Project with ES6 (Babel) and Hot reloader using Webpack and Karma test runner.",
"main": "index.js",
"scripts": {
"start": "node server.js",
"build": "./node_modules/.bin/webpack --config webpack.config.production.js",
"test": "./node_modules/karma/bin/karma start --single-run --no-auto-watch karma.config.js",
"test_watch": "./node_modules/karma/bin/karma start --auto-watch --no-single-run karma.config.js",
"lint": "./node_modules/.bin/eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/mvader/react-es6-webpack-karma-boilerplate.git"
},
"keywords": [
"react",
"es6",
"babel",
"webpack",
"karma"
],
"author": "Miguel Molina (http://mvader.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mvader/react-es6-webpack-karma-boilerplate/issues"
},
"homepage": "https://github.com/mvader/react-es6-webpack-karma-boilerplate",
"dependencies": {
"babel-runtime": "^5.1.10",
"react": "^0.13.3"
},
"devDependencies": {
"babel-core": "^5.4.5",
"babel-eslint": "^3.1.6",
"babel-loader": "^5.0.0",
"eslint": "^0.21.2",
"eslint-plugin-react": "^2.3.0",
"istanbul-instrumenter-loader": "^0.1.3",
"jasmine-core": "^2.3.4",
"karma": "^0.13.3",
"karma-coverage": "^0.4.2",
"karma-jasmine": "^0.3.6",
"karma-phantomjs-launcher": "^0.2.0",
"karma-spec-reporter": "0.0.20",
"karma-webpack": "^1.7.0",
"phantomjs": "^1.9.17",
"phantomjs-polyfill": "0.0.1",
"react-hot-loader": "^1.1.5",
"reagent": "^1.0.0",
"webpack": "^1.10.5",
"webpack-dev-server": "^1.8.0"
}
}