-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.76 KB
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
{
"name": "Wikilogic",
"version": "0.4.1",
"author": "The Wikilogic Foundation [Iain J McCallum, ...]",
"licence": "MIT",
"main": "./server/server.js",
"private": true,
"engine": {
"node": "4.4.5",
"npm": "3.9.3"
},
"scripts": {
"start": "npm run server",
"start:dev": "npm-run-all --parallel database server gulp test",
"database": "mongod",
"server": "nodemon ./server/server.js",
"gulp": "gulp",
"test": "npm run mocha",
"test_watcher": "npm run mocha -- --watch -R min",
"mocha": "mocha ./test -u bdd -R spec"
},
"jshintConfig": {
"esnext": true
},
"dependencies": {
"async": "^1.2.1",
"bcrypt-nodejs": "0.0.3",
"body-parser": "~1.12.0",
"cookie-parser": "^1.3.4",
"debug": "~2.1.1",
"express": "~4.12.2",
"express-handlebars": "^2.0.1",
"express-session": "^1.11.2",
"gravatar": "^1.1.1",
"jquery": "^2.2.4",
"mongoose": "^4.0.3",
"morgan": "^1.5.3",
"nodemon": "^1.9.2",
"passport": "^0.2.1",
"passport-facebook": "^2.0.0",
"passport-google-oauth": "^0.2.0",
"passport-local": "^1.0.0",
"passport-twitter": "^1.0.3",
"rivets": "^0.9.1"
},
"devDependencies": {
"browserify": "^13.0.1",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-autoprefixer": "^3.1.0",
"gulp-css-globbing": "^0.1.8",
"gulp-jslint": "^1.0.1",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.3.1",
"gulp-svg-sprite": "^1.3.1",
"gulp-util": "^3.0.7",
"jasmine-core": "^2.4.1",
"jshint": "^2.9.2",
"mocha": "^2.5.3",
"npm": "^3.9.5",
"npm-run-all": "^2.1.2",
"sass-glob-importer": "^1.0.1",
"should": "^9.0.0",
"trumbowyg": "^2.1.0",
"uglifyjs": "^2.4.10",
"vinyl-source-stream": "^1.1.0",
"watch": "^0.18.0"
}
}