forked from TheEvilCorp/OverReact
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.21 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
{
"name": "overreact",
"version": "1.0.0",
"private": true,
"description": "Wireframing React projects with the functionality to boilerplate. This is the production project for Codesmith Cohort 3 members - Susan, Rico, and Brian",
"main": "server/server.js",
"scripts": {
"start-server": "nodemon build/server.js",
"start": "node build/server.js",
"sudo-start-server": "sudo nodemon build/server.js",
"start-sudo": "gulp server; gulp & npm run sudo-start-server",
"start-dev": "gulp server; gulp & npm run start-server",
"gulp": "gulp",
"web": "npm start",
"prestart": "gulp server client scripts css",
"test": "mocha ./test"
},
"engines": {
"node": "4.2.3"
},
"babel": {
"presets": [
"react",
"es2015",
"stage-0"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheEvilCorp/OverReact.git"
},
"author": "EvilCorp",
"license": "ISC",
"bugs": {
"url": "https://github.com/TheEvilCorp/OverReact/issues"
},
"homepage": "https://github.com/TheEvilCorp/OverReact#readme",
"dependencies": {
"babel-preset-es2015": "^6.0.15",
"babel-preset-react": "^6.0.15",
"babel-preset-stage-0": "^6.3.13",
"babel-register": "^6.3.13",
"babelify": "^7.2.0",
"bluebird": "^3.0.5",
"body-parser": "^1.14.1",
"browserify": "^10.2.6",
"compression": "^1.6.0",
"ejs": "^2.3.4",
"express": "^4.13.3",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.1",
"gulp-concat": "^2.6.0",
"gulp-minify-css": "^1.2.2",
"gulp-notify": "^2.2.0",
"gulp-uglify": "^1.5.1",
"hat": "0.0.3",
"history": "^1.13.1",
"jquery": "^2.1.4",
"path": "^0.12.7",
"react": "^0.14.3",
"react-bootstrap": "^0.28.1",
"react-dom": "^0.14.0",
"react-router": "^1.0.2",
"react-zeroclipboard": "^3.0.0",
"request": "^2.67.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"zeroclipboard": "^2.2.0"
},
"devDependencies": {
"assert": "^1.3.0",
"chai": "^3.4.1",
"grunt-nodemon": "^0.4.1",
"gulp-nodemon": "^2.0.6",
"mocha": "^2.3.4",
"node-mocks-http": "^1.5.1",
"nodemon": "^1.8.1",
"supertest": "^1.1.0",
"watchify": "^3.6.1"
}
}