-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
54 lines (54 loc) · 1.35 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
{
"name": "superui-mono",
"version": "0.0.8",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/pheralb/superui.git"
},
"workspaces": [
"*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"build:ui": "turbo run build --filter=@superui/styles",
"build:app": "turbo run build --filter=app",
"dev": "turbo run dev --parallel",
"start": "turbo run start",
"lint": "turbo run lint",
"format": "prettier --write \"./**/*.{ts,tsx,md}\"",
"prepare": "husky install",
"lint-staged": "lint-staged",
"reinstall": "npx npkill && npm install"
},
"lint-staged": {
"**/*.{ts,tsx,js,jsx}": [
"eslint . --fix --config ./packages/eslint-config-custom/index.js",
"prettier --write ."
],
"*.json": [
"prettier --write"
]
},
"devDependencies": {
"@playwright/test": "^1.25.2",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"eslint-config-custom": "*",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "8.0.1",
"lint-staged": "^13.0.3",
"nagit": "latest",
"next-transpile-modules": "9.0.0",
"prettier": "latest",
"tslib": "2.4.0",
"turbo": "latest"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"packageManager": "[email protected]"
}