forked from metaplex-foundation/metaplex-program-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.31 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
{
"name": "@metaplex-foundation/metaplex-program-library",
"packageManager": "[email protected]",
"version": "0.1.0",
"description": "Web interface to Smart Contracts by the Metaplex team.",
"scripts": {
"build:core": "lerna run build --scope @metaplex-foundation/mpl-core",
"build:parallel": "lerna run --ignore @metaplex-foundation/mpl-core --parallel build",
"build": "yarn build:core && yarn build:parallel",
"test": "lerna run --parallel test",
"lint": "lerna run --parallel lint",
"fix": "lerna run --parallel fix"
},
"workspaces": [
"core/js",
"token-metadata/js",
"token-entangler/js",
"auctioneer/js",
"auction-house/js",
"gumdrop/js",
"candy-machine/js",
"fixed-price-sale/js",
"hydra/js",
"bubblegum/js",
"nft-packs/js"
],
"repository": "[email protected]:metaplex-foundation/metaplex-program-library.git",
"author": "Metaplex Maintainers <[email protected]>",
"license": "MIT",
"private": true,
"devDependencies": {
"@project-serum/anchor": "^0.19.0",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"esbuild-runner": "^2.2.1",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"lerna": "^4.0.0",
"prettier": "^2.4.1"
}
}