forked from tajo/ladle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.52 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
58
{
"name": "ladle",
"version": "0.0.0",
"main": "index.js",
"repository": "[email protected]:tajo/ladle.git",
"author": "Vojtech Miksu <[email protected]>",
"license": "MIT",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"lint": "eslint \"./packages/*/{lib,src}/**/*.{ts,tsx}\" --max-warnings=0",
"test": "turbo run test --concurrency=1",
"build": "turbo run build",
"typecheck": "tsc",
"prepare": "husky install",
"release": "./release.sh"
},
"workspaces": [
"packages/example",
"packages/ladle",
"packages/ladle-react-context",
"packages/website",
"e2e/addons",
"e2e/commonjs",
"e2e/config",
"e2e/config-ts",
"e2e/css",
"e2e/decorators",
"e2e/flow",
"e2e/playwright",
"e2e/programmatic",
"e2e/provider"
],
"devDependencies": {
"@changesets/changelog-github": "^0.4.7",
"@changesets/cli": "^2.25.2",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@playwright/test": "^1.28.1",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"husky": "^8.0.2",
"playwright": "^1.28.1",
"prettier": "^2.8.1",
"pretty-quick": "^3.1.3",
"turbo": "^1.6.3",
"typescript": "^4.9.4"
},
"engines": {
"node": ">=16.0.0"
}
}