-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.64 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
89
90
91
92
93
94
95
{
"name": "example-project",
"version": "0.0.0",
"private": true,
"main": "server.js",
"description": "https://docs.google.com/document/d/1N9-ObAcoa6bzeGjR8iZqnk12cpHiAUnEKVrdcJEHuw8",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:sv-bootcamp/example-project.git"
},
"scripts": {
"build-test": "gulp build:test",
"build-cover": "npm run build-test -- --cover",
"test": "BABEL_ENV=test NODE_ENV=test npm run build-test && gulp test",
"fast-test": "NODE_ENV=test gulp run:test",
"cover": "NODE_ENV=test npm run build-cover && gulp test",
"lint": "gulp lint",
"watch": "gulp watch",
"build": "gulp build",
"build-production": "NODE_ENV=production npm run build",
"server": "gulp server"
},
"pre-commit": [
"test"
],
"dependencies": {
"coffee-script": "^1.10.0",
"config": "^1.21.0",
"config-browserify": "^1.0.5",
"cson": "^3.0.2",
"envify": "^3.4.1",
"express": "^4.13.4",
"fb": "^1.1.1",
"gulp": "^3.9.1",
"hjson": "^2.0.5",
"iced-coffee-script": "^108.0.11",
"memory-cache": "^0.1.6",
"moment": "^2.14.1",
"morgan": "~1.7.0",
"node-simple-logger": "0.0.1",
"properties": "^1.2.1",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"react-facebook-login": "^3.1.0",
"react-redux": "^4.4.5",
"react-router": "^2.6.1",
"reduce-reducers": "^0.1.2",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0",
"request": "^2.74.0",
"serve-favicon": "~2.3.0",
"sinon": "^1.17.5",
"source-map-support": "^0.4.2",
"toml": "^2.3.0",
"x2js": "^2.0.1",
"yaml": "^0.3.0"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.13.2",
"babel-plugin-__coverage__": "^11.0.0",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babelify": "^7.3.0",
"browserify": "^13.1.0",
"enzyme": "^2.4.1",
"eslint-plugin-react": "^6.1.2",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-changed": "^1.3.2",
"gulp-connect": "^5.0.0",
"gulp-eslint": "^3.0.1",
"gulp-jsonlint": "^1.1.2",
"gulp-nodemon": "^2.1.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-util": "^3.0.7",
"json-loader": "^0.5.4",
"node-mocks-http": "^1.5.3",
"nodemon": "^1.10.1",
"pre-commit": "^1.1.3",
"react-addons-test-utils": "^15.3.1",
"request": "^2.74.0",
"rimraf": "^2.5.4",
"tape": "^4.6.0",
"unitest": "^0.10.3",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"engines": {
"node": "6.4.0"
}
}