forked from mechanismHQ/clarigen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.17 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
{
"name": "root",
"private": true,
"scripts": {
"build": "lerna run build",
"lint": "eslint packages/**/*.{ts,js}",
"lint:fix": "eslint --fix packages/**/*.{ts,js}",
"test": "lerna run test --no-bail --parallel",
"typecheck": "lerna run typecheck --no-bail --parallel",
"publish-packages": "yarn build && yarn lerna publish from-package --yes"
},
"prettier": "@blockstack/prettier-config",
"devDependencies": {
"@blockstack/eslint-config": "^1.0.5",
"@blockstack/prettier-config": "^0.0.6",
"@changesets/changelog-github": "0.4.1",
"@stacks/stacks-blockchain-api-types": "^0.66.1",
"@strictsoftware/typedoc-plugin-monorepo": "^0.4.2",
"@types/node": "16.11.7",
"eslint": "^7.0.0",
"eslint-plugin-jest": "^23.16.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"jest": "^26.0.1",
"jest-cli": "^26.6.3",
"lerna": "^4.0.0",
"prettier": "^2.0.5",
"ts-jest": "^26.1.0",
"tsdx": "^0.14.1",
"tslib": "^2.1.0",
"typedoc": "0.20.36",
"typescript": "4.1.3"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"@changesets/cli": "^2.17.0",
"jsonfile": "^6.1.0"
}
}