-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.89 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
{
"name": "react-boilerplate",
"private": true,
"version": "2.5.6",
"description": "Boilerplate for [SurviveJS - React](http://survivejs.com/react/introduction/)",
"scripts": {
"stats": "webpack --profile --json > stats.json",
"start": "webpack-dev-server",
"deploy": "gh-pages -d build",
"build": "webpack",
"test": "karma start",
"test:tdd": "npm run test -- --auto-watch --no-single-run",
"test:lint": "eslint ./app ./tests --ext .js --ext .jsx --ignore-path .gitignore --ignore-pattern dist --cache"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-survivejs-kanban": "^0.3.3",
"clean-webpack-plugin": "^0.1.9",
"css-loader": "^0.23.1",
"eslint": "^3.13.1",
"eslint-loader": "^1.3.0",
"eslint-plugin-react": "^6.9.0",
"expose-loader": "^0.7.1",
"extract-text-webpack-plugin": "^1.0.1",
"gh-pages": "^0.11.0",
"html-webpack-plugin": "2.21.0",
"html-webpack-template": "5.0.0",
"isparta-loader": "^2.0.0",
"karma": "^1.0.0",
"karma-coverage": "^1.0.0",
"karma-mocha": "^1.1.1",
"karma-phantomjs-launcher": "^1.0.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^1.7.0",
"mocha": "^2.5.3",
"npm-install-webpack-plugin": "4.0.4",
"phantomjs-polyfill": "0.0.2",
"phantomjs-prebuilt": "^2.1.7",
"react-addons-perf": "^15.1.0",
"react-addons-test-utils": "^15.1.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1",
"webpack-merge": "^0.14.0",
"webpack-validator": "^2.2.0"
},
"dependencies": {
"react": "^15.1.0",
"react-dom": "^15.1.0"
}
}