-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.03 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
{
"name": "react-playground",
"version": "0.0.0",
"description": "React Playground",
"repository": "https://github.com/fishermanswharff/react-playground",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test gulp test --type=test",
"dev": "NODE_ENV=development gulp serve --type=development",
"build": "NODE_ENV=production gulp --type=production",
"deploy": "NODE_ENV=production gulp awsS3 --type=production"
},
"keywords": [
"react",
"javascript",
"jsx",
"es6"
],
"author": "jason wharff",
"license": "ISC",
"devDependencies": {
"aws-sdk": "^2.4.4",
"babel-core": "^6.7.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"browser-sync": "^2.9.3",
"connect-history-api-fallback": "^1.1.0",
"coveralls": "^2.11.9",
"del": "^2.0.2",
"fs": "0.0.2",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-cli": "^1.2.1",
"gulp-concat": "^2.6.0",
"gulp-imagemin": "^2.3.0",
"gulp-load-plugins": "^1.2.0",
"gulp-minify-html": "^1.0.4",
"gulp-react": "^3.1.0",
"gulp-ruby-sass": "^2.0.3",
"gulp-sourcemaps": "^1.5.2",
"gulp-streamify": "^1.0.2",
"gulp-uglify": "^1.5.2",
"gulp-util": "^3.0.6",
"gulp-webpack": "^1.5.0",
"jasmine-core": "^2.4.1",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.3",
"karma-coverage": "^0.5.5",
"karma-failed-reporter": "0.0.3",
"karma-firefox-launcher": "^0.1.7",
"karma-jasmine": "^0.3.8",
"karma-phantomjs-launcher": "^1.0.0",
"karma-safari-launcher": "^0.1.1",
"karma-spec-reporter": "0.0.24",
"karma-webpack": "^1.7.0",
"node-libs-browser": "^1.0.0",
"path": "^0.12.7",
"phantomjs-prebuilt": "^2.1.7",
"react-addons-test-utils": "^0.14.7",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"classnames": "^2.2.3",
"firebase": "^2.4.1",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-quill": "^0.4.1",
"react-router": "^2.0.0"
}
}