-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.45 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": "nftxjs",
"version": "1.0.0",
"repository": "[email protected]:NFTX-project/nftxjs.git",
"author": "NFTX",
"license": "MIT",
"private": true,
"scripts": {
"prepare": "yarn build",
"lint": "lerna run lint",
"test": "lerna run test",
"build": "lerna run build",
"codegen": "lerna run codegen",
"yalc": "lerna exec yalc publish",
"docs": "npx markdown-cli-compiler -i docs && typedoc --out docs/api --name nftx.js --entryPointStrategy packages .",
"ci": "yarn install && yarn lint && yarn test"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@testing-library/react": "^15.0.7",
"@types/bn.js": "^5.1.5",
"@types/jest": "^27.4.1",
"@types/node": "^18.15.1",
"@types/react": "^18.0.7",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"better-docs": "^2.7.2",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"ethers": "^5.6.2",
"isomorphic-fetch": "^3.0.0",
"jest": "^27.5.1",
"jsdoc": "^3.6.11",
"lerna": "^6.1.0",
"react-dom": "^18.3.1",
"rollup": "^2.70.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"typedoc": "^0.23.23",
"typescript": "5.2.2"
},
"workspaces": [
"packages/*"
],
"dependencies": {}
}