-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.5 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
{
"name": "snapshot-ingest",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "babel src -d dist -x .ts --copy-files",
"start": "node dist/index.js",
"start:worker": "node dist/worker.js",
"start:web": "node dist/web.js",
"dev": "nodemon -r dotenv/config --exec babel-node -- -x .ts src/index.ts",
"cleanup": "babel-node -r dotenv/config src/cleanup.js",
"postinstall": "npm run build"
},
"author": "",
"license": "ISC",
"dependencies": {
"@metaplex-foundation/js": "^0.17.6",
"@solana/spl-token": "^0.2.0",
"@solana/web3.js": "^1.48.0",
"@supabase/supabase-js": "^1.30.7",
"@xindragons/toolkit": "^1.0.9",
"axios": "^0.25.0",
"babel-node": "^0.0.1-security",
"bn.js": "^5.2.1",
"body-parser": "^1.20.1",
"bottleneck": "^2.19.5",
"bs58": "^5.0.0",
"cli-progress": "^3.10.0",
"cors": "^2.8.5",
"date-fns": "^2.28.0",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"hyperspace-client-js": "^1.4.7",
"jsdom": "^19.0.0",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"tweetnacl": "^1.0.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.19.6",
"@babel/node": "^7.19.1",
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "^7.18.6",
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.14",
"nodemon": "^2.0.15",
"typescript": "^4.8.4"
}
}