-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
40 lines (40 loc) · 1.37 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
{
"name": "stellar-anchor-tests",
"version": "0.1.0",
"description": "stellar-anchor-tests is a container for the @stellar/anchor-tests project",
"private": true,
"workspaces": [
"@stellar/anchor-tests",
"ui",
"server"
],
"repository": {
"type": "git",
"url": "https://github.com/stellar/stellar-anchor-tests.git"
},
"license": "Apache-2.0",
"scripts": {
"build:anchor-tests": "yarn workspace @stellar/anchor-tests build",
"build:docs": "yarn workspace @stellar/anchor-tests typedoc --out ../../docs",
"publish:anchor-tests": "yarn publish @stellar/anchor-tests --access public",
"stellar-anchor-tests": "node @stellar/anchor-tests/lib/cli.js",
"start:ui": "yarn workspace ui start",
"build:server": "yarn build:anchor-tests; yarn workspace server build",
"start:server": "yarn workspace server start",
"build:all": "yarn build:server",
"start:all": "concurrently \"yarn start:ui\" \"yarn start:server\"",
"prepare": "husky install"
},
"homepage": "https://github.com/stellar/stellar-anchor-tests",
"author": "Stellar Development Foundation <[email protected]>",
"bugs": {
"url": "https://github.com/stellar/stellar-anchor-tests/issues"
},
"devDependencies": {
"@stellar/tsconfig": "^1.0.2",
"concurrently": "^6.2.0",
"husky": "^6.0.0",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0"
}
}