-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.87 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "cuaca",
"version": "0.5.8",
"description": "Aims to be a simple API for weather prediction in Indonesia",
"main": "src/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --color .",
"dev": "nodemon --exec babel-node src/app.js",
"start": "node dist/app.js",
"build": "rm -rf dist && npm run lint && babel src --out-dir dist && cp -r src/static dist/",
"gae-deploy": "npm run build && gcloud app deploy && rm -rf dist/",
"serve": "node dist/app.js",
"seeder": "babel-node src/seeder.js",
"weather-repo": "npm run seeder && cd weatherdata && serve .",
"seeds-to-db": "babel-node src/seeds-to-db.js",
"update-db": "npm run seeder && npm run seeds-to-db"
},
"keywords": [
"cuaca",
"bmkg",
"weather",
"indonesia",
"forecast"
],
"author": "Batista Harahap",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/node": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^4.2.3",
"nodemon": "^2.0.0",
"prettier": "^1.19.1"
},
"dependencies": {
"@babel/polyfill": "^7.7.0",
"axios": "^0.21.1",
"core-js": "^2.6.11",
"decimal.js": "^10.2.0",
"fast-xml-parser": "^3.16.0",
"fs-readdir-promise": "^1.0.1",
"fs-readfile-promise": "^3.0.1",
"geodist": "^0.2.1",
"jsend": "^1.1.0",
"koa": "^2.11.0",
"koa-body": "^4.1.1",
"koa-router-rx": "^0.4.0",
"koa-static": "^5.0.0",
"luxon": "^1.22.0",
"mongoose": "^5.9.1",
"rxjs": "^5.5.11",
"serve": "^11.3.0",
"xml2js": "^0.4.23"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}