forked from metaplex-foundation/amman
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
28 lines (28 loc) · 862 Bytes
/
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
{
"scripts": {
"build": "yarn build:client && yarn build:amman",
"build:client": "rimraf amman-client/dist && tsc -p amman-client/tsconfig.json",
"build:amman": "rimraf amman/dist && tsc -p amman/tsconfig.json",
"tests": "yarn build && (cd amman-tests && yarn test)",
"lint": "(cd amman-client && yarn lint) && (cd amman && yarn lint)",
"lint:fix": "(cd amman-client && yarn lint:fix) && (cd amman && yarn lint:fix)",
"doc": "(cd ./amman && yarn doc);",
"doc:update": "./sh/update-docs"
},
"workspaces": {
"packages": [
"amman",
"amman-client",
"amman-test"
]
},
"author": "Thorsten Lorenz <[email protected]>",
"repository": {
"url": "https://github.com/metaple-foundationx/amman.git"
},
"private": true,
"devDependencies": {
"rimraf": "^3.0.2",
"typescript": "^4.7.2"
}
}