forked from bem-under-sailsjs/sails-bem-project-stub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.96 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
{
"name": "sails-bem-project-stub",
"author": "alexbaumgertner@yandex.ru",
"license": "MIT",
"private": true,
"version": "1.0.0",
"description": "a typical Sails application",
"keywords": [],
"dependencies": {
"bcryptjs": "^2.1.0",
"gm": "^1.17.0",
"html": "0.0.7",
"passport": "^0.2.1",
"passport-facebook": "^1.0.3",
"passport-local": "^1.0.0",
"passport-vkontakte": "^0.3.0",
"rc": "~0.5.0",
"sails": "~0.11.0",
"sails-disk": "~0.10.0",
"sails-generate-auth": "^0.2.0",
"sails-hook-bem-render": "^1.1.0",
"sails-hook-dev": "^0.2.2",
"sails-hook-seed": "^0.1.1",
"sails-mongo": "^0.10.4",
"validator": "^3.22.1",
"vow": "^0.4.5",
"ym": "^0.1.0"
},
"devDependencies": {
"bower": "^1.3.9",
"browser-sync": "^2.9.3",
"ejs": "~0.8.4",
"enb": "^0.13.7",
"enb-autoprefixer": "^0.1.1",
"enb-bem": "0.1.0-beta2",
"enb-bemxjst": "^1.3.2",
"enb-borschik": "^1.1.1",
"enb-diverse-js": "^0.1.0",
"enb-modules": "^0.2.0",
"enb-stylus": "1.1.2",
"faker": "^2.1.2",
"grunt": "^0.4.5",
"gulp": "^3.9.0",
"gulp-nodemon": "^2.0.4",
"gulp-shell": "^0.4.3",
"run-sequence": "^1.1.2",
"sails-test-helper": "^0.4.1"
},
"scripts": {
"test": "npm run init && make test",
"start": "npm run init && sails lift",
"debug": "node debug app.js",
"init": "npm run deps && npm run make-views",
"deps": "npm i && ./node_modules/.bin/bower i",
"make-views": "npm run views-compile && npm run copy-views",
"views-compile": "./node_modules/.bin/enb make -d frontend --no-cache",
"copy-views": "npm run copy-css && npm run copy-js",
"copy-css": "cp frontend/desktop.bundles/merged/_merged.css frontend/static/css/",
"copy-js": "cp frontend/desktop.bundles/merged/_merged.js frontend/static/js/"
},
"main": "app.js",
"repository": {
"type": "git",
"url": "git://github.com/alexbaum/sails-bem-project-stub.git"
}
}