-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "tasks-timeline-view",
"version": "1.0.0",
"description": "Made with create-react-library",
"author": "Leonezz",
"license": "MIT",
"repository": "Leonezz/tasks-timeline-view",
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js",
"types": "./dist/index.d.ts"
},
"./css": "./dist/index.css"
},
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc && vite build",
"dev": "npm start",
"tailwindcss": "npx tailwindcss --watch -i src/index.css -o dist/style.css",
"start": "storybook dev -p 6006",
"storybook": "npm start",
"build-docs": "storybook build -o docs && touch ./docs/.nojekyll",
"lint": "eslint . --ext .ts,.tsx"
},
"dependencies": {
"@nextui-org/react": "latest",
"tailwindcss": "latest",
"@internationalized/date": "^3.5.6",
"rrule": "latest",
"uuid": "^9.0.1",
"zustand": "^4.4.7"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"framer-motion": "^10.16.16",
"moment": "latest",
"builtin-modules": "^4.0.0"
},
"devDependencies": {
"@types/node": "^20.3.0",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@vitejs/plugin-react": "^3.1.0",
"typescript": "^4.9.3",
"vite": "^4.1.0",
"vite-plugin-dts": "^2.3.0",
"@storybook/addon-essentials": "^7.0.20",
"@storybook/addon-interactions": "^7.0.20",
"@storybook/addon-links": "^7.0.20",
"@storybook/blocks": "^7.0.20",
"@storybook/react": "^7.0.20",
"@storybook/react-vite": "^7.0.20",
"@storybook/testing-library": "^0.0.14-next.2",
"storybook": "^7.0.20",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.3",
"@nextui-org/react": "latest",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"@types/jest": "^25.1.4",
"@types/uuid": "^9.0.7",
"cross-env": "^7.0.2",
"esbuild": "^0.23.0",
"esbuild-node-externals": "^1.14.0",
"esbuild-plugin-tsc": "^0.4.0",
"eslint-config-standard-react": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-node": "latest",
"eslint-plugin-prettier": "latest",
"eslint-plugin-promise": "latest",
"framer-motion": "^10.16.16",
"husky": "latest",
"moment": "latest",
"npm-dts": "^1.3.12",
"npm-run-all": "^4.1.5",
"postcss-import": "^16.1.0",
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.5.10",
"react": "latest",
"react-dom": "latest",
"react-scripts": "latest",
"tailwindcss": "^3.4.1",
"tslib": "latest"
}
}