forked from metaplex-foundation/metaplex-program-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.77 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
{
"name": "@metaplex-foundation/metaplex-program-library",
"packageManager": "[email protected]",
"version": "0.0.0",
"description": "Web interface to Smart Contracts by the Metaplex team.",
"scripts": {
"build:core": "lerna run build --scope @metaplex-foundation/mpl-core",
"build:auction": "lerna run build --scope @metaplex-foundation/mpl-auction",
"build:parallel": "lerna run --ignore @metaplex-foundation/mpl-core --ignore @metaplex-foundation/mpl-auction --ignore @metaplex-foundation/mpl-metaplex --parallel build",
"build:metaplex": "lerna run build --scope @metaplex-foundation/mpl-metaplex",
"build": "yarn build:core && yarn build:auction && yarn build:parallel && yarn build:metaplex",
"test": "lerna run --parallel test",
"lint": "lerna run --parallel lint",
"fix": "lerna run --parallel fix"
},
"workspaces": [
"core/js",
"token-vault/js",
"token-metadata/js",
"token-entangler/js",
"auction/js",
"metaplex/js",
"auction-house/js",
"gumdrop/js",
"candy-machine/js",
"membership-token/js"
],
"repository": "[email protected]:metaplex-foundation/metaplex-program-library.git",
"author": "Metaplex Maintainers <[email protected]>",
"license": "MIT",
"private": true,
"devDependencies": {
"@metaplex-foundation/solita": "0.0.2",
"@project-serum/anchor": "^0.19.0",
"@project-serum/common": "^0.0.1-beta.3",
"@types/mocha": "^9.0.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",
"mocha": "^9.1.3",
"prettier": "^2.4.1",
"ts-mocha": "^8.0.0",
"typescript": "^4.5.2"
}
}