forked from loconomics/loconomics-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.55 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
{
"name": "loconomics-backend",
"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",
"@types/express": "^4.16.0",
"@types/http-proxy": "^1.16.2",
"@types/mssql": "^4.0.10",
"@types/node": "^10.10.1",
"@types/passport": "^0.4.6",
"async": "^2.6.1",
"grunt": "^1.0.3",
"http-metrics-middleware": "^1.1.0",
"http-proxy": "^1.17.0",
"mssql": "^4.2.1",
"passport": "^0.4.0",
"passport-http-bearer": "^1.0.1",
"sails": "^1.0.2",
"sails-hook-grunt": "^3.0.2",
"sails-hook-orm": "^2.1.0",
"sails-hook-sockets": "^1.5.3",
"ts-node": "^7.0.1",
"typescript": "^3.0.3"
},
"devDependencies": {
"@sailshq/eslint": "^4.19.3",
"nodemon": "^1.18.4"
},
"scripts": {
"start": "NODE_ENV=production node app.js",
"dev": "nodemon -e js,ts app.js -w api/ -w config/",
"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",
"console": "docker-compose exec web yarn ts-node node_modules/.bin/sails console --dontLift"
},
"main": "app.js",
"repository": {
"type": "git",
"url": "git://github.com/loconomics/loconomics-backend.git"
},
"author": "nolan",
"license": "",
"engines": {
"node": ">=8.9"
}
}