-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.08 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
{
"name": "@easypizi/root",
"homepage": "http://easypizi.github.io/Animated-UIKIT",
"private": true,
"workspaces": [
"packages/tools/*",
"packages/libs/*",
"packages/apps/*"
],
"engines": {
"node": ">=18.0.0",
"npm": ">8.0.0"
},
"scripts": {
"build": "lerna run build --concurrency=2",
"predeploy": "npm run build",
"deploy": "gh-pages -d packages/apps/storybook/storybook-static",
"watch": "lerna run watch --parallel --stream",
"version-update": "lerna version --no-git-tag-version --no-push",
"lint": "lerna run lint --stream --concurrency=5 -- --max-warnings=0",
"clean": "lerna clean",
"storybook:start": "lerna run storybook --scope=@easypizi/storybook",
"generate-icons": "lerna run generate --scope=@easypizi/icons",
"prepare": "husky install"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"gh-pages": "^6.1.0",
"husky": "^8.0.0",
"lerna": "^7.1.5",
"typescript": "^5.1.6",
"vite": "^5.0.0"
},
"overrides": {
"typescript": "^5.1.6"
}
}