-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.09 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.09 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
{
"name": "react-starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"karma": "./node_modules/.bin/karma start ./test/karma.conf.js",
"test": "eslint . --ext js,jsx",
"build": "npm test && webpack --config webpack.dist.js && echo '\n\nBuild Succeeded 👍\n\n'",
"dev": "NODE_ENV=dev webpack-dev-server --hot --inline --content-base ./dist"
},
"author": "Alex Meah <hi@alexmeah.com> (http://alexmeah.com/)",
"license": "ISC",
"dependencies": {
"babel": "~5",
"babel-core": "~5",
"babel-runtime": "~5",
"es6-promise": "~3.0.2",
"history": "^1.17.0",
"http-status-codes": "^1.0.5",
"react": "^0.14.7",
"react-dom": "~0.14.3",
"react-helmet": "~2.2.0",
"react-router": "^1.0.3"
},
"devDependencies": {
"babel-eslint": "~4.1.3",
"babel-loader": "~5",
"babel-plugin-react-transform": "~1.1.1",
"bootstrap-sass": "~3.3.6",
"chai": "~3.4.1",
"classnames": "~2.2.0",
"clean-webpack-plugin": "~0.1.4",
"css-loader": "~0.23.0",
"eslint": "^1.10.1",
"eslint-config-airbnb": "~1.0.0",
"eslint-plugin-react": "~3.11.2",
"extract-text-webpack-plugin": "~0.9.1",
"file-loader": "~0.8.5",
"html-webpack-plugin": "^1.7.0",
"inject-loader": "~2.0.1",
"istanbul-instrumenter-loader": "~0.1.3",
"json-loader": "~0.5.4",
"karma": "~0.13.15",
"karma-chai": "~0.1.0",
"karma-chrome-launcher": "~0.2.1",
"karma-cli": "~0.1.1",
"karma-coverage": "~0.5.3",
"karma-mocha": "~0.2.1",
"karma-mocha-reporter": "~1.1.2",
"karma-phantomjs-launcher": "~0.2.1",
"karma-webpack": "~1.7.0",
"mocha": "~2.3.4",
"null-loader": "~0.1.1",
"phantomjs": "~1.9.19",
"react-addons-test-utils": "~0.14.3",
"react-transform-catch-errors": "~1.0.0",
"react-transform-hmr": "~1.0.1",
"redbox-react": "~1.2.0",
"sass-loader": "~3.1.2",
"stats-webpack-plugin": "~0.1.2",
"style-loader": "~0.13.0",
"url-loader": "~0.5.7",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0",
"webpack-hot-middleware": "^2.6.0"
}
}