-
Notifications
You must be signed in to change notification settings - Fork 87
/
package.json
35 lines (35 loc) · 1.01 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
{
"name": "angular-sailsjs-boilerplate",
"version": "1.0.0",
"description": "Example boilerplate application for AngularJS + Sails.js with separated back- and frontend.",
"keywords": [
"sails.js",
"backend",
"REST",
"API",
"JWT",
"JSON Web Token",
"Passport.js",
"frontend",
"angular",
"slush",
"slush-angular"
],
"main": "",
"dependencies": {},
"devDependencies": {},
"scripts": {
"install": "git submodule update --init --recursive && cd backend && npm install && cd ../frontend && npm install",
"start": "(cd backend && sails lift) & (cd frontend && gulp serve)",
"test": "cd backend && mocha"
},
"repository": {
"type": "git",
"url": "git://github.com/tarlepp/angular-sailsjs-boilerplate.git"
},
"bugs": {
"url": "https://github.com/tarlepp/angular-sailsjs-boilerplate/issues"
},
"author": "Tarmo Leppänen",
"license": "MIT"
}