-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (69 loc) · 1.88 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
{
"private": "true",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"server": "node ./build/server/app.js",
"test": "jest"
},
"browser": {
"jquery": "./client/bower_components/jquery/dist/jquery.js",
"jquery.cookie": "./client/bower_components/jquery.cookie/jquery.cookie.js",
"underscore": "./client/bower_components/lodash/dist/lodash.underscore.js",
"showdown": "./client/javascript/vendor/showdown-shimmed.js",
"bootstrap": "./client/bower_components/bootstrap/dist/js/bootstrap.js"
},
"browserify": {
"transform": [
"browserify-shim",
["coffee-reactify", {"coffeeout": true}],
"coffeeify",
"hbsfy"
]
},
"browserify-shim": "./config/shim.js",
"devDependencies": {
"bower": "~1.3.9",
"browserify": "~5.10.1",
"browserify-shim": "~3.7.0",
"coffeeify": "~0.7.0",
"coffee-reactify": "~0.5.0",
"hbsfy": "~2.0.0",
"vinyl-source-stream": "~0.1.1",
"watchify": "~1.0.2",
"require-dir": "~0.1.0",
"pretty-hrtime": "~0.2.1",
"browser-sync": "~1.3.6",
"gulp-less": "~1.3.5",
"gulp-changed": "~1.0.0",
"gulp-imagemin": "~1.0.1",
"gulp-notify": "~1.5.0",
"gulp-nodemon": "~1.0.4",
"gulp-open": "~0.2.8",
"gulp-util": "~3.0.0",
"gulp": "~3.8.7",
"gulp-coffeelint": "~0.3.4",
"gulp-autoprefixer": "~0.0.9",
"gulp-rimraf": "~0.1.0",
"gulp-shell": "~0.2.9",
"run-sequence": "~0.3.6",
"react": "~0.11.1",
"flux": "~2.0.0",
"jest-cli": "~0.1.18",
"karma": "~0.12.22",
"karma-phantomjs-launcher": "~0.1.4",
"karma-mocha-reporter": "~0.3.0",
"karma-chai": "~0.1.0",
"karma-mocha": "~0.1.9",
"showdown": "~0.3.1",
"lodash": "~2.4.1",
"express": "~4.8.7",
"morgan": "~1.2.3",
"util": "~0.10.3",
"mongoose": "~3.8.15",
"events": "~1.0.2",
"body-parser": "~1.6.7",
"handlebars": "^2.0.0"
}
}