-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
69 lines (69 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
63
64
65
66
67
68
69
{
"name": "react-rocket-boilerplate",
"version": "2.5.0",
"author": "Jake Marsh <[email protected]>",
"description": "Boilerplate using React, Browserify, SASS, and Gulp.",
"repository": {
"type": "git",
"url": "https://github.com/jakemmarsh/react-rocket-boilerplate.git"
},
"keywords": [
"gulp",
"browserify",
"react",
"sass",
"boilerplate"
],
"devDependencies": {
"babel-core": "^6.3.15",
"babel-eslint": "^6.0.4",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babelify": "^7.2.0",
"browser-sync": "^2.7.13",
"browserify": "^12.0.1",
"chai": "^3.5.0",
"change-case": "^2.3.1",
"debowerify": "^1.3.1",
"del": "^2.2.0",
"eslint-plugin-react": "^5.1.1",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^3.1.0",
"gulp-eslint": "^2.0.0",
"gulp-if": "^2.0.0",
"gulp-imagemin": "^2.3.0",
"gulp-jsx-coverage": "^0.3.5",
"gulp-mocha": "^2.1.3",
"gulp-notify": "^2.2.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.3.1",
"gulp-sourcemaps": "^1.5.2",
"gulp-streamify": "0.0.5",
"gulp-uglify": "^1.2.0",
"gulp-util": "^3.0.6",
"history": "^1.17.0",
"istanbul": "^0.4.0",
"jsdom": "^8.0.2",
"lodash": "^3.10.0",
"mocha": "^2.3.3",
"react": "^0.14.x",
"react-addons-test-utils": "^0.14.0",
"react-document-title": "^2.0.1",
"react-dom": "^0.14.0",
"react-router": "^1.0.0-rc1",
"reflux": "^0.3.0",
"run-sequence": "^1.1.1",
"sinon": "^1.17.1",
"sinon-as-promised": "^4.0.0",
"superagent": "^1.2.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.2.x",
"yargs": "^3.27.0"
},
"scripts": {
"lint": "NODE_ENV=test ./node_modules/.bin/gulp lint",
"test": "NODE_ENV=test ./node_modules/.bin/gulp test",
"build": "NODE_ENV=production ./node_modules/.bin/gulp prod"
}
}