forked from patternfly/patternfly-react-seed
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.53 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.53 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
{
"name": "patternfly-seed",
"type": "module",
"version": "0.0.2",
"description": "An open source build scaffolding utility for web apps.",
"repository": "https://github.com/patternfly/patternfly-react-seed.git",
"homepage": "https://patternfly-react-seed.surge.sh",
"license": "MIT",
"private": true,
"scripts": {
"prebuild": "npm run type-check && npm run clean",
"dr:surge": "node dr-surge.js",
"build": "vite build",
"build-dev": "vite build --mode development",
"start": "vite",
"test": "vitest --passWithNoTests",
"test:watch": "vitest --passWithNoTests --watch",
"test:coverage": "vitest --passWithNoTests --coverage",
"eslint": "eslint --ext .tsx,.js ./src/",
"lint": "npm run eslint",
"format": "prettier --check --write ./src/**/*.{tsx,ts}",
"type-check": "tsc --noEmit",
"ci-checks": "npm run type-check && npm run lint && npm run test:coverage",
"clean": "rimraf dist",
"preview": "npm run build-dev && vite preview",
"storybook": "start-storybook -p 6006",
"build:storybook": "build-storybook"
},
"devDependencies": {
"@axe-core/react": "^4.8.2",
"@storybook/addon-actions": "^8.0.4",
"@storybook/addon-knobs": "^7.0.2",
"@storybook/addon-links": "^8.0.4",
"@storybook/addons": "^7.0.27",
"@storybook/react": "^8.0.4",
"@storybook/react-vite": "^8.0.4",
"@tanstack/react-query-devtools": "^5.17.1",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "14.4.3",
"@types/loadable__component": "^5.13.8",
"@types/node": "^20.10.8",
"@types/react-dom": "^18.2.18",
"@types/react-router-dom": "^5.3.3",
"@types/victory": "^33.1.5",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"eslint": "^8.44.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jsdom": "^24.0.0",
"prettier": "^3.0.0",
"prop-types": "^15.8.1",
"react-router-dom": "^5.3.4",
"rimraf": "^5.0.1",
"ts-node": "^10.9.2",
"tslib": "^2.6.0",
"typescript": "^5.1.6",
"vite": "^5.1.4",
"vite-plugin-html": "^3.2.0",
"vite-plugin-static-copy": "^1.0.0",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^1.3.1"
},
"dependencies": {
"@patternfly/react-core": "^5.2.1",
"@patternfly/react-icons": "^5.2.1",
"@patternfly/react-styles": "^5.2.1",
"react": "^18",
"react-dom": "^18"
}
}