-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.86 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.86 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
93
94
{
"name": "ec-platform",
"version": "0.1.0",
"author": "Trunk Studio <community@trunk-studio.com>",
"contributors": [{
"name": "smlsun",
"email": "smlsun@trunk-studio.com"
}, {
"name": "clonn",
"email": "clonncd@gmail.com"
}, {
"name": "kyle",
"email": "kyle@trunk-studio.com"
}],
"keywords": [
"sails.js",
"coffeescript",
"jade",
"coffee",
"sass"
],
"dependencies": {
"bcryptjs": "^2.1.0",
"grunt": "0.4.2",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-coffee": "~0.10.1",
"grunt-contrib-concat": "~0.3.0",
"grunt-contrib-copy": "~0.5.0",
"grunt-contrib-cssmin": "~0.9.0",
"grunt-contrib-jst": "~0.6.0",
"grunt-contrib-less": "0.11.1",
"grunt-contrib-sass": "^0.8.1",
"grunt-contrib-uglify": "~0.4.0",
"grunt-contrib-watch": "~0.5.3",
"grunt-sails-linker": "~0.9.5",
"grunt-sync": "~0.0.4",
"include-all": "^0.1.6",
"jade": "^1.8.2",
"lodash": "^3.1.0",
"mailchimp": "^1.1.0",
"mailchimp-api": "^2.0.7",
"mime": "^1.3.4",
"mocha": "^2.1.0",
"moment": "~2.10.3",
"mysql": "^2.8.0",
"passport": "^0.2.1",
"passport-facebook": "^2.0.0",
"passport-local": "^1.0.0",
"passport-paypal-oauth": "git+https://github.com/vguardiola/passport-paypal-oauth.git",
"rc": "~0.5.0",
"sails": "~0.11.0-rc4",
"sails-disk": "~0.10.0",
"sails-hook-babel": "^5.0.1",
"sequelize": "^3.4.1",
"skipper": "^0.5.5",
"sqlite3": "^3.0.9",
"validator": "^3.37.0"
},
"scripts": {
"start": "node_modules/.bin/coffee app.coffee",
"build": "compass compile && node_modules/.bin/grunt",
"watch": "parallelshell 'npm run watch:compass' 'npm run watch:livereload' 'npm run watch:coffee'",
"watch:compass": "compass watch",
"watch:livereload": "live-reload --port 9091 .tmp/public/",
"watch:coffee": "coffee -cwo ./.tmp/public/js ./assets/js/",
"copy": "cp --parents ./assets/js/dependencies/*.js ./.tmp/public/js/dependencies/*.js",
"debug": "node debug app.js",
"release": "git push heroku release:master",
"mobileUpdate": "cd ../jquery-mobile-cart-demo && git pull && npm i",
"platformUpdate": "git pull && npm i",
"landUpdate": "cd ../nativeDroid2 && git pull && npm i",
"dockerRestart": "fig stop && fig up -d",
"restart": "npm run mobileUpdate && npm run platformUpdate && npm run landUpdate && npm run dockerRestart"
},
"main": "app.js",
"repository": {
"type": "git",
"url": "git://github.com/caesarchi/main-site.git"
},
"license": "GPL",
"devDependencies": {
"chai": "^1.10.0",
"cheerio": "^0.19.0",
"coffee-script": "^1.8.0",
"grunt-bower-task": "^0.4.0",
"grunt-cli": "^0.1.13",
"live-reload": "latest",
"nock": "^1.4.0",
"parallelshell": "^1.0.3",
"sinon": "^1.14.1",
"supertest": "^0.15.0",
"supertest-session": "0.0.7"
}
}