-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.27 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": "root-sdk-monorepo",
"description": "Monorepo for the SDK for DAOs in Solana",
"private": true,
"scripts": {
"build": "lerna run build",
"build:sdk": "lerna run build --scope=solana-dao-sdk",
"test": "CI=true lerna run test",
"test:debug": "lerna run test --scope=solana-dao-sdk -- ",
"test:sdk": "lerna run test --scope=solana-dao-sdk",
"lint:test": "lerna run lint:test",
"lint:fix": "lerna run lint:fix",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"format:test": "yarn lint:test && yarn prettier:check",
"format:fix": "yarn lint:fix && yarn prettier:fix",
"web": "lerna run build && lerna run start --scope=react-app-example-daos",
"clean": "lerna clean && rm -rf ./node_modules"
},
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nation-io/sdk.git"
},
"author": "Lucas de Moreno",
"license": "MIT",
"bugs": {
"url": "https://github.com/nation-io/sdk/issues"
},
"homepage": "https://github.com/nation-io/sdk#readme",
"devDependencies": {
"@lerna/clean": "^5.5.2",
"eslint-config-prettier": "^8.5.0",
"lerna": "^5.5.2",
"prettier": "^2.7.1"
},
"resolutions": {
"typescript": "~4.7"
}
}