-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
69 lines (69 loc) · 1.92 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
69
{
"name": "ojk-invest-api",
"version": "0.0.1",
"description": "Public API for OJK's investment data",
"main": "dist/index.js",
"type": "module",
"scripts": {
"scrap": "node dist/index.js",
"scrap:dev": "tsx index.ts",
"scrap:build": "tsc",
"lint": "eslint ./src/**/*.ts ./api/*.ts",
"api:dev": "vercel dev -l 3001"
},
"keywords": [
"api",
"ojk",
"investasi"
],
"author": {
"name": "Cristopher Namchee",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"@apollo/server": "^4.7.3",
"@as-integrations/next": "^2.0.0",
"@namchee/decora": "^1.0.5",
"@namchee/telepon": "1.0.5",
"@sentry/node": "^6.1.0",
"@sentry/tracing": "^6.1.0",
"@vercel/node": "^1.13.0",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"puppeteer": "^22.8.1"
},
"devDependencies": {
"@sentry/types": "^6.2.3",
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"eslint": "^7.19.0",
"eslint-config-google": "^0.14.0",
"tsx": "^4.10.2",
"typescript": "^5.0.4",
"vercel": "^30.2.1"
},
"pnpm": {
"overrides": {
"@apollo/server@>=4.7.1 <4.7.4": ">=4.7.4",
"@apollo/server@<4.9.3": ">=4.9.3",
"postcss@<8.4.31": ">=8.4.31",
"zod@<=3.22.2": ">=3.22.3",
"next@>=0.9.9 <13.4.20-canary.13": ">=13.4.20-canary.13",
"graphql@>=16.3.0 <16.8.1": ">=16.8.1",
"word-wrap@<1.2.4": ">=1.2.4",
"vite@>=4.0.0 <=4.5.1": ">=4.5.2",
"semver@>=7.0.0 <7.5.2": ">=7.5.2",
"semver@>=6.0.0 <6.3.1": ">=6.3.1",
"ip@<1.1.9": ">=1.1.9",
"ip@=2.0.0": ">=2.0.1",
"express@<4.19.2": ">=4.19.2",
"@babel/traverse@<7.23.2": ">=7.23.2",
"vite@>=4.0.0 <=4.5.2": ">=4.5.3",
"tar@<6.2.1": ">=6.2.1",
"next@>=13.4.0 <14.1.1": ">=14.1.1",
"next@>=13.4.0 <13.5.1": ">=13.5.1"
}
}
}