forked from vesparny/react-kickstart
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.08 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.08 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "react-kickstart",
"version": "4.0.2",
"description": "just another react + webpack boilerplate.",
"private": true,
"author": "Alessandro Arnodo <alessandro@arnodo.net> (https://alessandro.arnodo.net)",
"license": "MIT",
"bugs": {
"url": "https://github.com/vesparny/react-kickstart/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/vesparny/react-kickstart.git"
},
"homepage": "https://github.com/vesparny/react-kickstart",
"main": "index.js",
"scripts": {
"test": "ava \"test/**/*.spec.js\" --verbose",
"test:cover": "nyc npm run test",
"start": "node devServer",
"build:start": "cross-env NODE_ENV=production node prodServer",
"build": "rimraf dist && cross-env NODE_ENV=production webpack --config webpack.config.prod.js --progress --profile --colors",
"release": "npm run lint && npm run test && npm run build && rimraf gh-pages && mkdir gh-pages && cd gh-pages && cp -r ../dist/* . && git init . && git remote add origin git@github.com:vesparny/react-kickstart.git && git checkout -b gh-pages && git add . && git commit -m 'publishing' && git push origin gh-pages -f",
"lint": "standard",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"c": "git-cz"
},
"nyc": {
"reporter": [
"lcov",
"text",
"html"
]
},
"ava": {
"babel": "inherit",
"require": [
"./test/setup.js"
]
},
"standard": {
"parser": "babel-eslint",
"globals": [
"__DEV__"
]
},
"dependencies": {
"fastclick": "^1.0.6",
"normalize.css": "^4.1.1",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-redux": "^4.4.5",
"react-router": "^2.4.1",
"react-router-redux": "^4.0.5",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0"
},
"devDependencies": {
"autoprefixer": "^6.3.6",
"ava": "^0.15.2",
"babel-cli": "^6.10.1",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"commitizen": "^2.8.2",
"connect-history-api-fallback": "^1.2.0",
"conventional-changelog-cli": "^1.2.0",
"cross-env": "^1.0.8",
"css-loader": "^0.23.1",
"css-modules-require-hook": "^4.0.1",
"express": "^4.13.4",
"extract-text-webpack-plugin": "^1.0.1",
"html-webpack-plugin": "^2.21.0",
"http-proxy-middleware": "^0.15.2",
"jsdom": "^9.2.1",
"json-loader": "^0.5.4",
"lodash": "^4.13.1",
"nyc": "^6.4.4",
"postcss-loader": "^0.9.1",
"postcss-modules-values": "^1.1.3",
"rb-conventional-changelog": "^1.1.9",
"react-addons-test-utils": "^15.1.0",
"redbox-react": "^1.2.6",
"rimraf": "^2.5.2",
"sinon": "^1.17.4",
"standard": "^7.1.2",
"stats-webpack-plugin": "^0.3.1",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0"
},
"config": {
"commitizen": {
"path": "node_modules/rb-conventional-changelog"
}
}
}