-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
53 lines (53 loc) · 1.39 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
{
"name": "@giveth/ui-design-system",
"version": "1.11.36",
"files": [
"/lib"
],
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"dependencies": {
"next": "14.1.0",
"react": "^18",
"react-dom": "^18",
"styled-components": "^6.1.8"
},
"scripts": {
"build": "rm -rf lib;yarn build:esm",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir lib/cjs",
"storybook": "storybook dev -p 6006 -s public",
"build-storybook": "storybook build -s public",
"prepare": "npm run build",
"lint": "eslint . --ext .ts --ext .tsx",
"lint:fix": "eslint . --ext .ts --ext .tsx --fix"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.6.17",
"@storybook/addon-interactions": "^7.6.17",
"@storybook/addon-links": "^7.6.17",
"@storybook/addon-onboarding": "^1.0.11",
"@storybook/blocks": "^7.6.17",
"@storybook/nextjs": "^7.6.17",
"@storybook/react": "^7.6.17",
"@storybook/test": "^7.6.17",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-storybook": "^0.8.0",
"prettier": "^3.2.5",
"storybook": "^7.6.17",
"typescript": "^5"
},
"release": {
"branches": [
"main"
]
}
}