-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.36 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
{
"name": "neocron",
"version": "0.4.8",
"private": false,
"main": "dist/src/NeoCron.js",
"export": "dist/src/NeoCron.js",
"types": "dist/src/NeoCron.d.ts",
"author": "Evis Drenova",
"description": "A lightweight, modern chron editor",
"repository": {
"type": "git",
"url": "git+https://github.com/nucleuscloud/neocron.git"
},
"files": [
"dist/src"
],
"scripts": {
"build": "tsc && cp src/globals.css dist/src/globals.css",
"start": "webpack-dev-server",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"test": "jest"
},
"dependencies": {
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-alert-dialog": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.6",
"@radix-ui/react-select": "^1.2.2",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"autoprefixer": "10.4.15",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"cmdk": "^0.2.0",
"lucide-react": "^0.277.0",
"luxon": "^3.4.3",
"postcss": "8.4.31",
"tailwind-merge": "^1.14.0",
"tailwindcss": "3.3.3",
"tailwindcss-animate": "^1.0.7"
},
"peerDependencies": {
"react": "18.2.0",
"react-dom": "18.2.0"
},
"engines": {
"node": ">=16.0"
},
"devDependencies": {
"@babel/cli": "^7.22.15",
"@babel/core": "^7.22.20",
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.22.15",
"@storybook/addon-essentials": "^7.5.3",
"@storybook/addon-interactions": "^7.5.3",
"@storybook/addon-links": "^7.5.3",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.5.3",
"@storybook/nextjs": "^7.5.3",
"@storybook/react": "^7.5.3",
"@storybook/testing-library": "^0.2.2",
"@types/jest": "^29.5.8",
"@types/luxon": "^3.3.2",
"@types/node": "20.6.0",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"babel-loader": "^9.1.3",
"eslint": "8.49.0",
"eslint-plugin-storybook": "^0.6.15",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.5.3",
"ts-jest": "^29.1.1",
"typescript": "5.2.2"
}
}