-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.5 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.5 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
79
80
81
{
"name": "@workflowai/packages",
"private": true,
"version": "1.6.3",
"description": "Packages for WorkflowAI JS SDK",
"author": "WorkflowAI",
"homepage": "https://workflowai.com",
"workspaces": [
"packages/workflowai",
"packages/react"
],
"devDependencies": {
"@actions/core": "^1.10.1",
"@jest/globals": "^29.4.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^16.0.1",
"@storybook/addon-essentials": "^8.6.7",
"@storybook/blocks": "^8.6.7",
"@storybook/react": "^8.6.7",
"@storybook/react-vite": "^8.6.7",
"@storybook/test": "^8.6.7",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.2.2",
"@types/json-schema": "^7.0.15",
"@types/minimist": "^1.2.5",
"@types/node": "^18",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-require-extensions": "^0.1.3",
"eslint-plugin-storybook": "^0.11.6",
"eslint-plugin-unused-imports": "^3.2.0",
"husky": "^9.1.6",
"jest": "^29.3.1",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^15.2.10",
"minimist": "^1.2.8",
"nodemon": "^3.1.4",
"openapi-typescript": "^6.7.6",
"postcss": "^8.5.3",
"postcss-modules": "^6.0.1",
"prettier": "^3.3.2",
"rollup": "^4.36.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"storybook": "^8.6.7",
"storybook-addon-mock": "^5.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"ts-xor": "^1.3.0",
"tsx": "^4.1.2",
"typescript": "^5.5.2",
"vite-tsconfig-paths": "^5.1.4"
},
"scripts": {
"check": "npm run check --workspaces --if-present",
"fix": "npm run fix --workspaces --if-present",
"build": "npm run build --workspaces --if-present",
"lint-staged": "lint-staged",
"prepare": "husky",
"test:unit": "npm run test:unit --workspaces --if-present",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"check-version": "tsx ./bin/check-version.ts"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint"
],
"**/*.{json,md,yml,yaml,css,scss,html,js,jsx,ts,tsx}": [
"prettier --check"
]
}
}