forked from metaplex-foundation/js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.12 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@metaplex-foundation/js",
"private": true,
"workspaces": [
"packages/*"
],
"license": "MIT",
"description": "Metaplex JavaScript SDK",
"keywords": [
"nft",
"metaplex",
"solana",
"blockchain"
],
"author": "Metaplex Maintainers <[email protected]>",
"homepage": "https://metaplex.com",
"repository": {
"url": "https://github.com/metaplex-foundation/js.git"
},
"scripts": {
"clean": "nx affected --target=clean",
"clean:all": "nx run-many --all --target=clean",
"build": "nx affected --target=build",
"build:all": "nx run-many --all --target=build",
"test": "nx affected --target=test",
"test:all": "nx run-many --all --target=test",
"test:filter": "CI=1 ./infra/run-filtered-tests.sh",
"lint:test": "nx run-many --all --target=lint:test",
"lint:fix": "nx run-many --all --target=lint:fix",
"format": "prettier --write packages/",
"docs": "typedoc",
"docs:deploy": "yarn docs && gh-pages --dist docs --dotfiles",
"amman:start": "DEBUG='amman:(info|error|debug)' CI=1 amman start",
"amman:stop": "amman stop"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/preset-typescript": "^7.16.7",
"@changesets/cli": "^2.24.4",
"@identity.com/solana-gateway-ts": "^0.9.0",
"@metaplex-foundation/amman": "^0.12.0",
"@metaplex-foundation/amman-client": "^0.2.2",
"@metaplex-foundation/beet": "^0.6.1",
"@metaplex-foundation/beet-solana": "^0.3.1",
"@nrwl/cli": "14.7.5",
"@nrwl/eslint-plugin-nx": "14.7.5",
"@nrwl/js": "^14.7.5",
"@nrwl/linter": "14.7.5",
"@nrwl/workspace": "14.7.5",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-typescript": "^8.5.0",
"@types/bn.js": "^5.1.1",
"@types/debug": "^4.1.7",
"@types/lodash.clonedeep": "^4.5.7",
"@types/lodash.isequal": "^4.5.6",
"@types/mime": "^2.0.3",
"@types/node-fetch": "^2.6.2",
"@types/sinon": "^10.0.13",
"@types/tape": "^4.13.2",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"babel-plugin-module-resolver": "^4.1.0",
"depcheck": "^1.4.3",
"esbuild": "^0.15.14",
"esbuild-runner": "^2.2.2",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-eslint-plugin": "^5.0.6",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sort-class-members": "^1.15.2",
"gh-pages": "^4.0.0",
"nx": "^14.7.5",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"rollup": "^2.72.0",
"rollup-plugin-polyfill-node": "^0.9.0",
"rollup-plugin-terser": "^7.0.2",
"sinon": "^13.0.1",
"spok": "^1.4.3",
"tap-spec": "^5.0.0",
"tape": "^5.5.2",
"tsc-alias": "^1.7.0",
"typedoc": "^0.23.0",
"typescript": "^4.5.4"
},
"dependencies": {}
}