forked from tajo/ladle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.48 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": "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",
"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/programmatic",
"e2e/provider"
],
"devDependencies": {
"@changesets/changelog-github": "^0.4.4",
"@changesets/cli": "^2.22.0",
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@playwright/test": "1.19.2",
"@types/jest": "^27.4.1",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"husky": "^7.0.4",
"prettier": "^2.6.1",
"pretty-quick": "^3.1.3",
"turbo": "^1.2.5",
"typescript": "^4.6.4"
},
"engines": {
"node": ">=16.0.0"
}
}