forked from NftEyez/sol-rayz
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 758 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 758 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
{
"name": "@nfteyez/root",
"description": "Set of utils to parse NFTs on Solana blockchain.",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"docs": "doctoc --title '**Table of content**' README.md",
"clean": "lerna run clean",
"clean:deps": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"build": "lerna run build",
"watch": "lerna run watch",
"publish": "lerna publish",
"test": "lerna run test",
"lint": "eslint --ext js,ts,tsx ."
},
"devDependencies": {
"@nighttrax/eslint-config-tsx": "~9.0.0",
"doctoc": "~2.1.0",
"eslint": "^7.11.0",
"eslint-plugin-import": "~2.25.0",
"lerna": "~4.0.0",
"react": "~17.0.0",
"typescript": "~4.4.0"
}
}