-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 790 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 790 Bytes
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
{
"name": "test",
"version": "1.0.0",
"description": "",
"main": "./lib/index.js",
"bin": {
"nft-uploader": "./lib/index.js"
},
"scripts": {
"ts-node": "ts-node",
"lint": "eslint 'src/**/*.{js,ts}' --fix",
"build": "tsc -p .",
"watch": "tsc -w -p ."
},
"author": "",
"license": "ISC",
"dependencies": {
"arweave": "^1.10.16",
"commander": "^8.2.0",
"tslib": "^2.3.1"
},
"devDependencies": {
"@types/node": "^16.9.1",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.12",
"prettier": "^2.4.0",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
}
}