-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
54 lines (54 loc) · 1.55 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
{
"name": "nt-gui-packages",
"license": "Apache-2.0",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/NorthernTechHQ/nt-gui.git"
},
"scripts": {
"build": "vite build",
"dev": "vite dev",
"lint": "eslint . --ext .ts,.tsx && turbo run lint",
"dev-storybook": "storybook dev -p 6006",
"build-storybook": "storybook build --docs",
"preview-storybook": "serve storybook-static",
"clean": "turbo run clean && rm -rf node_modules",
"release": "turbo run build",
"publish-packages": "turbo publish --continue",
"publish-packages-next": "turbo pre-publish --continue"
},
"dependencies": {
"react": "^18.x",
"react-dom": "^18.x"
},
"devDependencies": {
"@changesets/cli": "^2.27.10",
"@northern.tech/eslint-config": "*",
"@northern.tech/prettier-config": "*",
"@northern.tech/typescript-config": "*",
"@storybook/addon-actions": "^8.4.7",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-links": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/react-vite": "^8.4.7",
"@trivago/prettier-plugin-sort-imports": "^5.2.0",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^8.57.0",
"eslint-plugin-prettier": "^5.2.1",
"serve": "^14.2.4",
"storybook": "^8.2.6",
"tsup": "8.3.5",
"turbo": "^2.3.3",
"typescript": "^5.7.2",
"vite": "^6.0.3"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "*"
},
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
]
}