-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.28 KB
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
{
"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": "turbo run lint --continue --log-order=grouped",
"format:check": "turbo run format:check --continue --log-order=grouped",
"test": "turbo run test-ci",
"dev-storybook": "storybook dev -p 6006",
"build-storybook": "storybook build --docs",
"preview-storybook": "serve storybook-static",
"init-msw": "msw init .storybook/public/ --save",
"clean": "turbo run clean && rm -rf node_modules",
"release": "turbo run build",
"yalc:publish": "npm run release && npm exec --workspaces -- yalc publish --no-script --push",
"prepare": "husky"
},
"dependencies": {
"react": "^19.x",
"react-dom": "^19.x"
},
"lint-staged": {
"packages/**/*.{ts,tsx,js,jsx,less}": [
"prettier --write",
"eslint --fix --quiet"
]
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@emotion/jest": "^11.14.2",
"@northern.tech/eslint-config": "*",
"@northern.tech/prettier-config": "*",
"@northern.tech/store": "*",
"@northern.tech/testing": "*",
"@northern.tech/themes": "*",
"@northern.tech/typescript-config": "*",
"@tsdown/css": "^0.22.3",
"@storybook/addon-docs": "^10.4.6",
"@storybook/addon-links": "^10.4.6",
"@storybook/react-vite": "^10.4.6",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@vitejs/plugin-react": "^6.0.3",
"eslint": "^9.39.1",
"husky": "^9.1.7",
"jsdom": "29.1.1",
"lint-staged": "^17.0.8",
"msw": "^2.14.6",
"msw-storybook-addon": "^2.0.7",
"prettier": "^3.9.4",
"react-idle-timer": "^5.7.3",
"serve": "^14.2.6",
"storybook": "^10.2.13",
"tsup": "8.5.1",
"turbo": "^2.10.3",
"typescript": "^6.0.3",
"uuid": "^14.0.1",
"vite": "^8.1.2",
"vitest": "^4.1.9"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "*"
},
"packageManager": "npm@11.0.0",
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
]
}