-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
40 lines (40 loc) · 965 Bytes
/
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
{
"name": "flipper",
"version": "1.0.0",
"description": "Generate and upload flipped NFT collection metadata",
"main": "dist/app.js",
"scripts": {
"start": "ts-node src/app.ts",
"dev": "ts-node-dev --respawn --transpile-only src/app.ts"
},
"keywords": [
"NFT",
"flipped",
"metadata",
"IPFS"
],
"author": "Anish Agnihotri",
"license": "GPLv3",
"devDependencies": {
"@types/node": "^17.0.5",
"@types/prompt": "^1.1.2",
"babel-eslint": "^10.1.0",
"eslint": "^8.5.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"dependencies": {
"axios": "^0.24.0",
"dotenv": "^10.0.0",
"ethers": "^5.5.2",
"form-data": "^4.0.0",
"jimp": "^0.16.1",
"prompt": "^1.2.0",
"winston": "^3.3.3"
}
}