-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·47 lines (46 loc) · 1.34 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
{
"name": "landing-page",
"private": true,
"version": "0.0.0",
"description": "a Sails application",
"keywords": [],
"dependencies": {
"@sailshq/connect-redis": "^3.2.1",
"@sailshq/lodash": "^3.10.3",
"@sailshq/socket.io-redis": "^5.2.0",
"firebase": "^6.0.2",
"firebase-admin": "^7.3.0",
"grunt": "^1.0.4",
"sails": "^1.2.1",
"sails-firestore": "^0.1.1",
"sails-hook-grunt": "^3.1.0",
"sails-hook-orm": "^2.1.1",
"sails-hook-sockets": "^1.5.5",
"sails-mongo": "^1.0.0",
"connect-mongo": "^2.0.0",
"async": "2.0.1",
"mongodb": "2.2.25"
},
"devDependencies": {
"@sailshq/eslint": "^4.19.3"
},
"scripts": {
"start": "NODE_ENV=production sails lift",
"test": "npm run lint && npm run custom-tests && echo 'Done.'",
"lint": "eslint . --max-warnings=0 --report-unused-disable-directives && echo '✔ Your .js files look good.'",
"custom-tests": "echo \"(No other custom tests yet.)\" && echo",
"docker": "docker-compose run adapter bash",
"docker-test": "docker-compose up --exit-code-from adapter && docker-compose down",
"test": "npm install -g sails-mongo"
},
"main": "app.js",
"repository": {
"type": "git",
"url": "git://github.com/maxlion/landing-page.git"
},
"author": "maxlion",
"license": "",
"engines": {
"node": "10.15"
}
}