-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
43 lines (43 loc) · 1.05 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
{
"name": "glaze",
"private": true,
"packageManager": "yarn@1.18.0",
"workspaces": {
"packages": [
"examples/*",
"packages/*"
],
"nohoist": [
"ajv",
"execa"
]
},
"scripts": {
"docs": "typedoc --tsconfig tsconfig.docs.json",
"test": "yarn turbo run test",
"test:ci": "yarn turbo run test:ci",
"lint": "yarn turbo run lint",
"build": "lerna run build:types && yarn turbo run build:js",
"prepare": "yarn build"
},
"devDependencies": {
"@skypack/package-check": "^0.2.2",
"@swc/cli": "^0.1.57",
"@swc/core": "^1.2.173",
"@swc/jest": "^0.2.20",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"del-cli": "^4.0.1",
"eslint": "^8.14.0",
"eslint-config-3box": "^0.4.0",
"eslint-plugin-jest": "^26.1.5",
"jest": "^28.0.2",
"lerna": "^4.0.0",
"prettier": "^2.6.2",
"turbo": "^1.2.5",
"typedoc": "0.22.15",
"typedoc-plugin-markdown": "^3.12.1",
"typescript": "^4.5.5"
}
}