-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.48 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
{
"name": "physis",
"version": "1.0.0",
"description": "Get smart insights, alerts & warnings about predicted natural disasters and take precautions before they arrive to keep family, friends & yourself safe.",
"main": "./scripts/start",
"repository": "https://github.com/NukeCodes/Physis",
"author": "Sankarsan Kampa",
"private": true,
"scripts": {
"gulp:clean": "./node_modules/.bin/gulp clean",
"gulp:transpile": "./node_modules/.bin/gulp compile",
"transpile": "./node_modules/.bin/tsc",
"lint:eslint": "./node_modules/.bin/eslint .",
"lint:tslint": "./node_modules/.bin/tslint -c tslint.yaml 'source/**/*.ts'",
"lint": "yarn lint:eslint && yarn lint:tslint",
"build": "yarn gulp:clean && yarn gulp:transpile && yarn transpile",
"start": "node .",
"start:api": "node ./scripts/serve_api",
"start:www": "node ./scripts/serve_www",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@types/dotenv": "^4.0.3",
"@types/express": "^4.16.0",
"@types/morgan": "^1.7.35",
"@types/node": "^10.12.0",
"@types/node-fetch": "^2.1.2",
"@types/redis": "^2.8.7",
"del": "^3.0.0",
"eslint": "^5.7.0",
"gulp": "^3.9.1",
"gulp-typescript": "^5.0.0-alpha.3",
"tslint": "^5.11.0",
"typescript": "^3.1.3"
},
"dependencies": {
"dotenv": "^6.1.0",
"express": "^4.16.4",
"morgan": "^1.9.1",
"node-fetch": "^2.2.0",
"predicthq": "^0.0.19",
"redis": "^2.8.0"
}
}