-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.15 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.15 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
69
{
"name": "react-starter-kit",
"version": "1.0.0",
"description": "A boiler plate built on top of React and Redux using Webpack tool and NPM packages.",
"main": "index.html",
"scripts": {
"lint": "npm run eslint",
"eslint": "eslint --ext .js --ext .jsx src || true",
"dev": "webpack-dev-server --history-api-fallback --inline --progress --colors --host 0.0.0.0",
"clean": "if [ -d \"build\" ]; then rm -r build; fi && mkdir build",
"build": "webpack -p --progress --release",
"test": "node_modules/.bin/mocha --compilers js:babel-core/register --require babel-polyfill --require ./tests/test_helper \"tests/**/*_test@(.js|.jsx)\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/TribalScale/react-starter-kit.git"
},
"keywords": [
"react",
"redux",
"webpack",
"npm",
"starter kit"
],
"author": "TribalScale",
"license": "MIT",
"bugs": {
"url": "https://github.com/TribalScale/react-starter-kit/issues"
},
"homepage": "https://github.com/TribalScale/react-starter-kit#readme",
"dependencies": {
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-redux": "^4.4.5",
"react-router": "^2.8.1",
"redux": "^3.6.0",
"redux-devtools-extension": "^1.0.0",
"redux-logger": "^2.7.0",
"redux-thunk": "^2.1.0",
"sinon": "^1.17.6"
},
"devDependencies": {
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"css-loader": "^0.25.0",
"enzyme": "^2.4.1",
"eslint": "^3.7.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0",
"extract-text-webpack-plugin": "^1.0.1",
"fetch-mock": "^5.5.0",
"html-webpack-plugin": "^2.22.0",
"isomorphic-fetch": "^2.2.1",
"jsdom": "^9.6.0",
"mocha": "^3.1.2",
"node-sass": "^3.10.1",
"react-addons-test-utils": "^15.3.2",
"sass-loader": "^4.0.2",
"unexpected": "^10.18.1",
"unexpected-react": "^3.2.4",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.1"
}
}