forked from EJJ-Brainstorm/Brainstorm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.31 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
{
"name": "Brainstorm",
"version": "2.0.0",
"description": "Brainstorming app",
"main": "index.js",
"scripts": {
"start": "watchify -d client/app/starter.js -o client/app/bundle.js -v",
"test": "mocha specs/server/ServerSpec.js && jest",
"build": "NODE_ENV=production browserify client/app/starter.js | uglifyjs -cm > client/app/bundle.min.js"
},
"jest": {
"scriptPreprocessor": "<rootDir>/preprocessor.js",
"testDirectoryName": "jest_tests",
"testPathDirs": [
"specs"
],
"unmockedModulePathPatterns": [
"react"
]
},
"browserify": {
"transform": [
[
"reactify",
{
"es6": true
}
],
"envify"
]
},
"repository": {
"type": "git",
"url": "https://github.com/EJJ-Brainstorm/Brainstorm"
},
"keywords": [
"Brainstorm",
"Ideation"
],
"author": "Brett, Dmitri, Gunnari, Jason, Pat, Rory, Julie, Eric, Jared, James",
"license": "MIT",
"bugs": {
"url": "https://github.com/EJJ-Brainstorm/Brainstorm/issues"
},
"homepage": "https://github.com/EJJ-Brainstorm/Brainstorm",
"devDependencies": {
"chai": "^1.10.0",
"expect.js": "^0.3.1",
"jasmine-core": "^2.1.2",
"jest-cli": "^0.4.0",
"mocha": "^2.0.1",
"request": "^2.49.0"
},
"dependencies": {
"async": "^0.9.0",
"body-parser": "^1.10.0",
"browser-sync": "^1.7.2",
"browserify": "^8.1.3",
"d3": "^3.5.5",
"envify": "^3.2.0",
"express": "^4.10.4",
"express-session": "^1.9.3",
"flux": "^2.0.1",
"gulp": "^3.8.10",
"gulp-minify-css": "^0.3.11",
"gulp-minify-html": "^0.1.7",
"gulp-nodemon": "^1.0.4",
"gulp-rev": "^2.0.1",
"gulp-shell": "^0.2.11",
"gulp-uglify": "^1.0.2",
"gulp-usemin": "^0.3.8",
"gulp-watch": "^3.0.0",
"jquery": "^2.1.3",
"mongodb": "^1.4.23",
"mongoose": "^3.8.20",
"morgan": "^1.5.0",
"passport": "^0.2.1",
"passport-facebook": "^1.0.3",
"passport-github": "^0.1.5",
"passport-google-oauth": "^0.1.5",
"q": "^1.1.2",
"react": "^0.12.2",
"react-draggable": "^0.4.0",
"react-router": "^0.12.4",
"react-tools": "^0.12.2",
"reactify": "^1.0.0",
"reflux": "^0.2.5",
"socket.io": "^1.2.1",
"socket.io-client": "^1.3.5",
"underscore": "^1.7.0",
"watchify": "^2.3.0"
}
}