-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.65 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
{
"name": "triangle-js-sdks",
"private": true,
"version": "1.0.0",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"prepublishOnly": "npm run build && npm run lint && npm run test",
"release": "nx release",
"build": "nx run-many -t build",
"build:watch": "nx watch --all -- nx run \\$NX_PROJECT_NAME:build",
"typecheck": "nx run-many -t typecheck",
"lint": "nx run-many -t lint && eslint ./__tests__ --quiet",
"lint:fix": "nx run-many -t lint --fix && eslint ./__tests__ --fix --quiet",
"test": "vitest run",
"storybook:papp": "nx run host-papp-react-ui:storybook",
"knip": "knip --no-exit-code",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@nx/eslint": "22.7.5",
"@nx/eslint-plugin": "22.7.5",
"@nx/js": "22.7.5",
"@nx/storybook": "22.7.5",
"@nx/vite": "22.7.5",
"@storybook/react-vite": "10.4.4",
"@types/node": "25.9.3",
"@types/ws": "8.18.1",
"@vitejs/plugin-react": "5.2.0",
"babel-plugin-react-compiler": "1.0.0",
"eslint": "10.4.1",
"eslint-config-prettier": "10.1.8",
"eslint-import-resolver-typescript": "4.4.5",
"eslint-plugin-import-x": "4.16.2",
"eslint-plugin-prettier": "5.5.6",
"globals": "17.6.0",
"husky": "9.1.7",
"jiti": "2.7.0",
"knip": "6.16.1",
"nanoevents": "9.1.0",
"nx": "22.7.5",
"prettier": "3.8.4",
"storybook": "10.4.4",
"ts-node": "10.9.2",
"tslib": "2.8.1",
"typescript": "6.0.3",
"typescript-eslint": "8.61.0",
"vite": "7.3.2",
"vite-plugin-dts": "5.0.2",
"vite-plugin-externalize-deps": "0.10.0",
"vitest": "4.1.8"
}
}