-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (50 loc) · 1.25 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
{
"name": "niftyclick-backend",
"version": "1.0.0",
"description": "server side nft minting w/ metaplex",
"main": "index.js",
"scripts": {
"build": "rimraf ./build && tsc",
"start": "npm run build && node build/index.js",
"dev": "nodemon",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --fix --ext .ts && prettier --config .prettierrc.json \"./**/*.ts\" --write"
},
"keywords": [
"nft",
"camera",
"solana",
"sms",
"solana-mobile-stack",
"nft-camera"
],
"author": "arihantbansal",
"license": "MIT",
"dependencies": {
"@metaplex-foundation/js": "^0.18.3",
"@solana/web3.js": "^1.75.0",
"bigint-buffer": "^1.1.5",
"bs58": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"morgan": "^1.10.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/morgan": "^1.9.3",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
}
}