-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
88 lines (88 loc) · 2.19 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "react-starterify",
"version": "2.4.1",
"description": "React JS application skeleton using Browserify and other awesome tools",
"main": "app.js",
"repository": {
"type": "git",
"url": "https://github.com/Granze/react-starterify"
},
"keywords": [
"gulp",
"react",
"browserify",
"seed",
"boilerplate",
"kickstarter",
"ES6",
"ES2015",
"babel",
"ava"
],
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
},
"scripts": {
"start": "npm run watch",
"watch": "gulp watch",
"build": "gulp build",
"deploy": "gulp deploy",
"test": "ava --tap | tap-nyan"
},
"author": "Maurizio Mangione",
"license": "MIT",
"bugs": {
"url": "https://github.com/Granze/react-starterify/issues"
},
"homepage": "https://github.com/Granze/react-starterify",
"dependencies": {
"history": "^3.0.0",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"react-router": "^2.3.0"
},
"devDependencies": {
"autoprefixer": "^6.3.6",
"ava": "^0.15.2",
"babel": "^6.5.2",
"babel-core": "^6.7.7",
"babel-eslint": "^6.0.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-register": "^6.7.2",
"babelify": "^7.3.0",
"browser-sync": "^2.12.5",
"browserify": "^13.0.0",
"cssnano": "^3.5.2",
"eslint": "^2.8.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.6.0",
"eslint-plugin-jsx-a11y": "^1.0.3",
"eslint-plugin-react": "^5.0.1",
"gulp": "^3.9.1",
"gulp-eslint": "^2.0.0",
"gulp-gh-pages": "^0.5.4",
"gulp-html-replace": "^1.5.5",
"gulp-imagemin": "^3.0.1",
"gulp-notify": "^2.2.0",
"gulp-postcss": "^6.1.0",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^2.0.0-alpha",
"gulp-uglify": "^1.5.3",
"imagemin-pngquant": "^5.0.0",
"lodash": "^4.11.1",
"postcss-nested": "^1.0.0",
"postcss-simple-extend": "^1.0.0",
"postcss-simple-vars": "^2.0.0",
"react-addons-test-utils": "^15.0.1",
"rimraf": "^2.5.2",
"run-sequence": "^1.1.5",
"tap-nyan": "0.0.2",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.7.0"
}
}