forked from 3mard/cloud-pricing-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.91 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
68
{
"name": "cloud-pricing-api",
"version": "1.0.0",
"description": "Cloud Pricing API",
"main": "src/server.js",
"scripts": {
"dev": "nodemon src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"update": "node dist/cmd/update.js",
"update:dev": "ts-node src/cmd/update.ts",
"lint": "eslint --ext .ts,.js --ignore-path .gitignore .",
"format": "prettier --write 'src/**/*.{js,ts}'"
},
"author": "Alistair Scott",
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "https://raw.githubusercontent.com/infracost/cloud-pricing-api/master/LICENSE"
}
],
"dependencies": {
"apollo-server-express": "^2.17.0",
"apollo-server-plugin-base": "^0.10.2",
"axios": "^0.19.2",
"decimal.js": "^10.2.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"glob": "^7.1.6",
"googleapis": "^64.0.0",
"graphql": "^15.0.0",
"graphql-parse-resolve-info": "^4.9.0",
"graphql-tools": "^6.2.4",
"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",
"@types/glob": "^7.1.3",
"@types/lodash": "^4.14.161",
"@types/mongodb": "^3.5.33",
"@types/node": "^14.14.6",
"@types/pino-http": "^5.0.5",
"@types/prettier": "^2.1.1",
"@types/yargs": "^15.0.7",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.21.1",
"nodemon": "^2.0.6",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/infracost/cloud-pricing-api.git"
}
}