-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.03 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
{
"name": "clippie",
"private": true,
"version": "1.0.0",
"main": "index.js",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"scripts": {
"dev": "yarn workspaces foreach -Api run dev",
"postinstall": "husky install"
},
"workspaces": [
"apps/*"
],
"license": "MIT",
"packageManager": "yarn@4.0.2",
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"commitlint-plugin-function-rules": "^1.7.1",
"env-cmd": "^10.1.0",
"husky": "^8.0.0",
"nodemon": "^2.0.19",
"prettier": "^2.5.1"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-tooltip": "^1.0.7",
"mini-svg-data-uri": "^1.4.4"
}
}