-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.51 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.51 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "Platform",
"description": "",
"author": "Spectrum IT Solutions GmbH <office@spectrumit.eu>",
"version": "0.1.0",
"private": true,
"engine": "node >= 0.10.12",
"main": "src/server/server.coffee",
"contributors": [
{
"name": "Cris Mihalache",
"email": "cris@adefy.com"
},
{
"name": "Blaž Hrastnik",
"email": "blaz@adefy.com"
},
{
"name": "Corey Powell",
"email": "corey@adefy.com"
}
],
"repository": {
"type": "git",
"url": "git@github.com:Adefy/Platform.git"
},
"dependencies": {
"connect": "~2.14.2",
"express": "~3.4.8",
"jade": "~1.3.0",
"mongoose": "~3.8.8",
"bcrypt": "~0.7.7",
"request": "~2.34.0",
"spew": "0.0.2",
"redis": "~0.10.1",
"cheerio": "~0.13.1",
"node-cache": "~0.4.1",
"express-validator": "~2.1.0",
"archiver": "~0.6.1",
"paypal-rest-sdk": "~0.6.4",
"newrelic": "~1.4.0",
"hiredis": "~0.1.16",
"statsd-client": "0.0.15",
"accounting": "~0.3.2",
"coffee-script": "~1.7.1",
"time-grunt": "~0.2.10",
"passport": "~0.2.0",
"passport-localapikey": "0.0.3",
"connect-redis": "~1.4.7",
"async": "~0.2.10",
"passport-local": "~1.0.0",
"connect-flash": "~0.1.1",
"aws-sdk": "~2.0.0-rc11",
"bson": "~0.2.7",
"gulp-exec": "~1.0.4",
"powerdrill": "0.2.2",
"yamljs": "~0.1.4",
"create-error": "~0.3.1",
"qs": "~0.6.6",
"mockery": "~1.4.0",
"lodash": "~2.4.1",
"string": "~1.8.0"
},
"devDependencies": {
"supertest": "~0.9.0",
"superagent": "~0.17.0",
"chai": "1.9.0",
"gulp": "~3.5.6",
"gulp-coffee": "~1.4.1",
"gulp-concat": "~2.1.7",
"gulp-uglify": "~0.2.1",
"gulp-minify-css": "~0.3.0",
"gulp-stylus": "0.1.0",
"gulp-rename": "~1.2.0",
"gulp-ngmin": "~0.1.2",
"gulp-clean": "~0.2.4",
"gulp-nodemon": "~1.0.2",
"gulp-cache": "~0.1.3",
"gulp-imagemin": "~0.1.5",
"gulp-jade": "~0.4.2",
"gulp-mocha": "~0.4.1",
"gulp-order": "~1.0.6"
},
"scripts": {
"test": "npm run unit-tests-client && npm run unit-tests-server && npm run integration-tests",
"integration-tests": "mocha -R spec ./tests/integration.coffee --compilers coffee:coffee-script/register",
"unit-tests-client": "mocha-phantomjs ./tests/unit/client/test.html",
"unit-tests-server": "mocha -R spec ./tests/unit.coffee --compilers coffee:coffee-script/register",
"prestart": "npm install && bower install && bundle update",
"start": "gulp develop"
}
}