-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
36 lines (36 loc) · 899 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": "cloud-pricing-api",
"version": "1.0.0",
"description": "Cloud Pricing API",
"main": "src/update.js",
"scripts": {
"update": "node src/update.js",
"start": "node src/api.js",
"lint": "eslint --ext .js --ignore-path .gitignore ."
},
"author": "Alistair Scott",
"license": "ISC",
"dependencies": {
"apollo-server-express": "^2.17.0",
"axios": "^0.19.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"glob": "^7.1.6",
"graphql": "^15.0.0",
"lodash": "^4.17.19",
"mingo": "^3.0.5",
"mongodb": "^3.5.8",
"pino": "^6.3.2",
"pino-http": "^5.2.0",
"pino-pretty": "^4.0.0",
"prettier": "^2.1.1",
"yargs": "^15.4.1"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/node": "^7.10.5",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.21.1"
}
}