forked from anza-xyz/octane
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.23 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
{
"private": true,
"name": "@solana/octane",
"version": "0.1.0-alpha.0",
"author": "Solana Maintainers <[email protected]>",
"repository": "https://github.com/solana-labs/octane",
"license": "Apache-2.0",
"engines": {
"node": "14.x"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "shx rm -rf build/*",
"build": "yarn clean && esbuild --bundle --platform=node --target=node14 --outdir=build --sourcemap --legal-comments=none `find src/api \\\\( -name '*.ts' \\\\)`",
"vercel-build": "yarn run build --minify",
"local": "vercel dev",
"test": "mocha",
"fmt": "prettier --write '{*,**/*}.{js,ts,jsx,tsx,json}'",
"lint": "eslint --ext .ts . && prettier --check '{*,**/*}.{js,ts,jsx,tsx,json}'",
"lint:fix": "eslint --fix --ext .ts . && yarn fmt",
"nuke": "shx rm -rf node_modules yarn.lock"
},
"dependencies": {
"@solana/buffer-layout": "^4.0.0",
"@solana/spl-token": "^0.2.0-alpha.1",
"@solana/web3.js": "^1.31.0",
"bs58": "^4.0.1",
"cache-manager": "^3.6.0",
"cors": "^2.8.5",
"express-rate-limit": "^5.5.1"
},
"devDependencies": {
"@types/bs58": "^4.0.1",
"@types/cache-manager": "^3.4.2",
"@types/chai-as-promised": "^7.1.4",
"@types/cors": "^2.8.12",
"@types/eslint": "^8.2.1",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/express": "^4.17.13",
"@types/express-rate-limit": "^5.1.3",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.13",
"@types/prettier": "^2.4.2",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"@vercel/node": "^1.12.1",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"esbuild": "^0.14.5",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"gh-pages": "^3.2.3",
"mocha": "^9.1.3",
"prettier": "^2.5.1",
"shx": "^0.3.3",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typescript": "^4.4.4",
"vercel": "^23.1.2"
}
}