forked from voxpelli/node-one-page
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.04 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "vtonepage",
"version": "2.0.2",
"license": "MIT",
"author": {
"name": "Pelle Wessman",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/voxpelli/node-one-page.git"
},
"dependencies": {
"backbone-extend-standalone": "~0.1.2",
"cloudinary": "^1.0.8",
"connect-busboy": "0.0.2",
"connect-pg-simple": "^3.1.0",
"connect-roles": "^3.0.3",
"cookie-parser": "^1.4.0",
"ejs": "^2.3.4",
"express": "^4.13.3",
"express-session": "^1.12.1",
"forms": "1.2.0",
"jquery": "^2.1.4",
"knex": "~0.9.0",
"knex-migrator-extension": "^0.1.3",
"lodash": "^3.0.0",
"lru-cache": "^3.2.0",
"marked": "~0.3.3",
"passport": ">= 0.1.1",
"passport-github": "^1.0.0",
"passport-oauth2": "^1.1.2",
"passport-twitter": "^1.0.2",
"pg": "^4.1.0",
"pg-pubsub": "^0.2.2",
"serve-static": "^1.10.0",
"static-expiry": "0.0.11",
"strftime": "~0.9.0",
"tema": "~0.2.3",
"underscore": "~1.6.0",
"vp-express-wrapper": "^0.6.0"
},
"devDependencies": {
"browserify-shim": "^3.8.11",
"bundle-collapser": "^1.2.1",
"bunyan-adaptor": "voxpelli/node-bunyan-adaptor#1.x",
"chai": "^3.4.1",
"cheerio": "^0.22.0",
"coveralls": "^2.11.4",
"dashdash": "^1.14.0",
"dependency-check": "^2.2.0",
"errorhandler": "^1.4.2",
"eslint-config-semistandard": "^5.0.0",
"eslint-config-standard": "^4.4.0",
"eslint-plugin-standard": "^1.3.1",
"filendir": "^1.0.0",
"grunt": "~0.4.2",
"grunt-bowercopy": "^1.2.3",
"grunt-browserify": "^4.0.1",
"grunt-contrib-uglify": "~0.11.0",
"grunt-contrib-watch": "~0.6.1",
"grunt-eslint": "^17.3.1",
"grunt-fontello": "~0.1.3",
"grunt-lintspaces": "~0.7.0",
"grunt-mocha-istanbul": "^3.0.1",
"grunt-notify": "~0.4.1",
"grunt-sass": "^1.1.0",
"istanbul": "^0.4.0",
"mocha": "^2.3.3",
"passport-dummy": "voxpelli/passport-dummy#master",
"promise-queue": "^2.2.3",
"quickly-copy-file": "^1.0.0",
"request": "^2.75.0",
"supertest": "^1.1.0",
"supertest-as-promised": "^2.0.2"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browser": {
"eventable": "./basetheme/sources/js/vendor/eventable.js"
},
"browserify-shim": {
"./basetheme/sources/js/vendor/jquery.form.js": {
"depends": [
"jquery:jQuery"
]
},
"./basetheme/sources/js/vendor/sir-trevor.js": {
"exports": "SirTrevor",
"depends": [
"jquery:jQuery",
"underscore:_",
"eventable:Eventable"
]
}
},
"engines": {
"node": ">=5.0.0"
},
"main": "./lib/app",
"scripts": {
"start": "node .",
"test": "node -e \"require('grunt').tasks(['test']);\"",
"install-schema": "node -e \"require('.').runMigrationTask('install');\"",
"migrate-schema": "node -e \"require('.').runMigrationTask('migrate');\"",
"rollback-schema": "node -e \"require('.').runMigrationTask('rollback');\""
},
"directories": {
"lib": "./lib"
}
}