-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 loc) · 1.66 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
50
51
52
53
54
55
56
57
{
"name": "root",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap && lerna link",
"clean": "lerna run clean --parallel",
"build": "lerna run build",
"build-sdk": "yarn workspace @rarible/flow-sdk run build",
"build-test": "yarn workspace @rarible/flow-test-common run build",
"build-fcl-types": "yarn workspace @rarible/fcl-types run build",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx . --fix",
"release": "lerna publish from-package",
"prettify:packages": "lerna exec -- sort-package-json && sort-package-json",
"prettify": "run-s prettify:*",
"test": "echo 'ok'",
"verify": "lerna run verify --parallel",
"lint-staged": "lint-staged",
"publish-all": "lerna publish from-package",
"prepare": "husky install",
"precommit": "run-s verify lint"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"**/src/package.json": [
"yarn run prettify:packages"
],
"package.json": [
"yarn run prettify:packages"
]
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@rarible/eslint-config-ts": "~0.11.0-alpha.5",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^7.0.4",
"lerna": "^4.0.0",
"lint-staged": "^10.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"sort-package-json": "^1.50.0",
"tslib": "^2.6.2",
"typescript": "~5.4.5"
}
}