forked from survivejs/react-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.92 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
{
"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 --content-base build/",
"build": "webpack",
"test": "jest",
"test:verbose": "jest --verbose",
"test:tdd": "npm run test -- --watch --bail",
"test:cover": "npm run test -- --coverage",
"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-jest": "^14.1.0",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"clean-webpack-plugin": "^0.1.9",
"css-loader": "^0.23.1",
"eslint": "2.13.1",
"eslint-loader": "^1.3.0",
"eslint-plugin-react": "^5.2.2",
"expose-loader": "^0.7.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.21.0",
"html-webpack-template": "5.0.0",
"jest-cli": "^14.1.0",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"npm-install-webpack-plugin": "4.0.3",
"react-addons-perf": "^15.1.0",
"react-addons-test-utils": "^15.1.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1",
"webpack-merge": "^0.14.0",
"webpack-validator": "^2.2.0"
},
"dependencies": {
"bootstrap": "^3.3.7",
"jquery": "^3.1.0",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-redux": "^4.4.5",
"react-router": "^2.8.1",
"react-router-redux": "^4.0.5",
"redux": "^3.5.2"
}
}