This repository was archived by the owner on Dec 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 4.26 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 4.26 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "react-redux-starter-kit",
"version": "0.0.0-semantically-released",
"description": "Skeleton structure for an isomorphic JS app using React, Redux, and other packages preferred by RentPath.",
"main": "bin/server.js",
"scripts": {
"start": "PORT=3000 NODE_PATH=$NODE_PATH:./src node --harmony bin/server.js",
"lint": "eslint --ext=js --ext=jsx {src,test}",
"lint:fix": "npm run lint -- --fix",
"info": "npm-scripts-info",
"test": "NODE_PATH=./src:./test mocha src/**/__tests__/*.js src/**/**/__tests__/*.js",
"test:watch": "npm run test -- --watch",
"test:cov": "babel-node `npm bin`/istanbul cover `npm bin`/_mocha -- --recursive",
"styleguide": "rsg -c styleguide.js 'src/components/!(__tests__)/*.js'",
"styleguide:watch": "rsg -c styleguide.js 'src/components/!(__tests__)/*.js' -d",
"semantic-release": "semantic-release pre && npm build && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/rentpath/react-redux-starter-kit.git"
},
"author": "Caleb Wright, Colin Rymer",
"license": "MIT",
"bugs": {
"url": "https://github.com/rentpath/react-redux-starter-kit/issues"
},
"homepage": "https://github.com/rentpath/react-redux-starter-kit#readme",
"dependencies": {
"babel-cli": "6.5.1",
"babel-polyfill": "6.5.0",
"colors": "^1.1.2",
"compression": "^1.6.0",
"es6-promise": "^3.0.2",
"express": "^4.13.3",
"history": "1.17.0",
"immutable": "^3.7.5",
"isomorphic-fetch": "^2.2.0",
"npm-scripts-info": "^0.1.0",
"piping": "^0.3.0",
"pretty-error": "^1.2.0",
"react": "^0.14.0",
"react-document-meta": "^2.0.0",
"react-dom": "^0.14.0",
"react-redux": "^4.0.0",
"react-router": "2.0.0",
"react-router-redux": "4.0.0",
"redux": "^3.3.1",
"redux-actions": "^0.8.0",
"redux-thunk": "^1.0.0",
"serve-favicon": "^2.3.0",
"serve-static": "^1.10.0"
},
"devDependencies": {
"autoprefixer-loader": "^3.2.0",
"babel-core": "^6.4.5",
"babel-eslint": "^5.0.0",
"babel-loader": "^6.2.1",
"babel-plugin-react-transform": "2.0.0",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-react-remove-statics": "0.0.5",
"babel-preset-es2015": "6.5.0",
"babel-preset-react": "6.5.0",
"babel-preset-stage-0": "6.5.0",
"babel-runtime": "^6.3.9",
"chai": "3.5.0",
"chai-enzyme": "0.4.0",
"chai-immutable": "^1.3.0",
"chokidar": "^1.2.0",
"clean-webpack-plugin": "^0.1.3",
"css-loader": "^0.21.0",
"css-modules-require-hook": "^1.0.11",
"cz-conventional-changelog": "1.1.5",
"enzyme": "2.0.0",
"eslint": "^1.10.3",
"eslint-config-rentpath": "^1.1.0",
"eslint-loader": "^1.1.0",
"eslint-plugin-import": "^0.8.1",
"eslint-plugin-react": "^3.6.3",
"eslint-plugin-standard": "^1.3.1",
"extract-text-webpack-plugin": "^0.8.2",
"file-loader": "^0.8.4",
"ignore-styles": "1.2.0",
"istanbul": "1.0.0-alpha.2",
"jsdom": "8.0.2",
"mocha": "^2.3.3",
"postcss": "^5.0.10",
"postcss-modules-extract-imports": "^1.0.0",
"postcss-modules-local-by-default": "^1.0.0",
"postcss-modules-scope": "^1.0.0",
"react-addons-test-utils": "^0.14.0",
"react-transform-hmr": "^1.0.1",
"rsg-alt": "*",
"semantic-release": "^4.3.5",
"strip-loader": "^0.1.0",
"style-loader": "^0.13.0",
"url-loader": "^0.5.6",
"webpack": "^1.12.11",
"webpack-dev-middleware": "^1.4.0",
"webpack-hot-middleware": "^2.6.0",
"webpack-isomorphic-tools": "^2.2.26"
},
"engines": {
"node": ">=5.6.0",
"npm": ">=3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"scripts-info": {
"build": "Build JavaScript assets once",
"start": "Install and boot a local server at localhost:3000",
"lint": "Run eslint and report errors",
"lint:fix": "Run eslint and attempt to fix errors",
"info": "See `npm run info`",
"test": "Run mocha tests",
"test:watch": "Same as `test`, but runs tests when files change",
"test:cov": "Run tests and report coverage",
"styleguide": "Build the styleguide from the React components",
"styleguide:watch": "Same as `styleguide`, but continues watching for changes"
}
}