forked from invertase/sails-firebase-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.05 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
{
"name": "sails-with-firebase-auth",
"private": true,
"version": "0.0.0",
"description": "a Sails application",
"keywords": [],
"dependencies": {
"connect-redis": "3.2.0",
"cuid": "^1.3.8",
"firebase-admin": "^5.5.0",
"msgpack-lite": "^0.1.26",
"sails": "^1.0.0-40",
"sails-hook-orm": "^2.0.0-16",
"sails-hook-sockets": "^1.4.0",
"sails-mongo": "^1.0.0-11",
"sails-postgresql": "^0.11.4"
},
"devDependencies": {
"eslint": "3.19.0",
"firebase": "^4.6.2"
},
"scripts": {
"start": "NODE_ENV=production node app.js",
"test": "npm run lint && npm run custom-tests && echo 'Done.'",
"lint": "node ./node_modules/eslint/bin/eslint . --max-warnings=0 && echo '✔ Your code looks good.'",
"custom-tests": "echo \"(No other custom tests yet.)\" && echo",
"debug": "node debug app.js"
},
"main": "app.js",
"repository": {
"type": "git",
"url": "git://github.com/mikediarmid/sails-with-firebase-auth.git"
},
"author": "mikediarmid",
"license": "",
"engines": {
"node": "8"
}
}