-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.81 KB
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
{
"name": "create_tokens",
"version": "1.0.0",
"description": "A simple TypeScript CLI project",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"build": "tsc --build && npm run migrate",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"cli": "node dist/index.js",
"lint": "eslint 'src/**/*.{ts,tsx}' --fix",
"test": "jest",
"clean": "rm -rf dist",
"prepare": "npm run build",
"migrate": "ts-node src/utils/runMigrations.ts",
"migration:generate": "npx sequelize-cli migration:generate --name add-products-table"
},
"bin": {
"mycli": "dist/index.js"
},
"keywords": [
"cli",
"typescript"
],
"author": "",
"license": "ISC",
"dependencies": {
"@coral-xyz/anchor": "^0.29.0",
"@metaplex-foundation/mpl-token-metadata": "^3.4.0",
"@metaplex-foundation/umi-web3js-adapters": "^1.2.0",
"@raydium-io/raydium-sdk-v2": "^0.2.6-alpha",
"@solana/spl-token": "^0.4.8",
"@solana/web3.js": "^1.95.3",
"@types/express": "^4.17.21",
"@types/form-data": "^2.5.0",
"@types/node": "^20.14.10",
"axios": "^1.7.2",
"bn.js": "^5.2.2",
"bs58": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^16.6.1",
"express": "^4.21.2",
"form-data": "^4.0.0",
"helmet": "^8.1.0",
"multer": "^2.0.2",
"pg": "^8.16.3",
"pinata": "^2.4.9",
"sequelize": "^6.37.7",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
},
"devDependencies": {
"@types/bn.js": "^5.2.0",
"@types/cors": "^2.8.19",
"@types/jest": "^29.5.12",
"@types/multer": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"sequelize-cli": "^6.6.3",
"ts-jest": "^29.1.5",
"ts-node-dev": "^2.0.0"
}
}