-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.87 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
{
"name": "@octoai/demo-design-system",
"version": "0.1.0",
"author": "Chai Landau <clandau@octo.ai>",
"description": "OctoAI Demo Design System",
"license": "ISC",
"private": false,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"storybook": "storybook dev -p 6006",
"build:storybook": "storybook build",
"build:styles": "npx tailwindcss -i ./src/styles/main.css -o ./dist/styles.css --minify --postcss"
},
"dependencies": {
"next": "14.1.0",
"react": "^18",
"react-aria-components": "^1.1.1",
"react-dom": "^18"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^11.0.2",
"@semantic-release/release-notes-generator": "^12.1.0",
"@storybook/addon-essentials": "^7.6.10",
"@storybook/addon-interactions": "^7.6.10",
"@storybook/addon-links": "^7.6.10",
"@storybook/addon-onboarding": "^1.0.11",
"@storybook/addon-styling-webpack": "^0.0.6",
"@storybook/blocks": "^7.6.10",
"@storybook/nextjs": "^7.6.10",
"@storybook/react": "^7.6.10",
"@storybook/test": "^7.6.10",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"eslint-plugin-storybook": "^0.6.15",
"postcss": "^8.4.33",
"postcss-import": "^16.0.0",
"prettier": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.11",
"semantic-release": "^23.0.2",
"storybook": "^7.6.10",
"tailwindcss": "^3.4.1",
"typescript": "^5"
},
"resolutions": {
"jackspeak": "2.1.1"
},
"files": [
"./dist/styles.css"
]
}