-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 916 Bytes
/
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
{
"name": "weather_services",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"start:dev": "set NODE_ENV=development && set PORT=4000 && nodemon --inspect index.js",
"eslint": "eslint ./",
"eslint-fix": "eslint ./ --fix",
"build": "webpack",
"prod": "node dist/api.bundle.js"
},
"engines": {
"node": "10.15.x"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@elastic/elasticsearch": "^7.6.0",
"body-parser": "^1.19.0",
"express": "^4.17.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"error": "^10.0.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"nodemon": "^2.0.2",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
}
}