-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
91 lines (91 loc) · 3.81 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
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
82
83
84
85
86
87
88
89
90
91
{
"name": "@patternfly/virtual-assistant-root",
"private": true,
"version": "0.0.0",
"description": "This library provides a virtual assistant.",
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build:packages && npm run build:fed:packages",
"build:watch": "concurrently \"npm run build:packages:watch\" \"npx wait-on packages/module/dist/esm && npm run build:fed:packages\"",
"build:docs": "npm run docs:build -w @patternfly/virtual-assistant",
"build:packages": "npm run build -w @patternfly/virtual-assistant",
"build:packages:watch": "npm run build:watch -w @patternfly/virtual-assistant",
"build:fed:packages": "npm run build:fed:packages -w @patternfly/virtual-assistant",
"cypress:open": "cypress open",
"cypress:run:ci:cp": "cypress run --component",
"cypress:run:e2e": "cypress run --headless",
"cypress:run:ci:e2e": "start-server-and-test start http://localhost:8006 cypress:run:e2e",
"start": "concurrently \"npm run build:watch\" \"npx wait-on packages/module/dist && npm run docs:develop -w @patternfly/virtual-assistant\"",
"serve:docs": "npm run docs:serve -w @patternfly/virtual-assistant",
"clean": "npm run clean -w @patternfly/virtual-assistant",
"lint:js": "node --max-old-space-size=4096 node_modules/.bin/eslint packages --ext js,jsx,ts,tsx --cache",
"lint:js:fix": "node --max-old-space-size=4096 node_modules/.bin/eslint packages --ext js,jsx,ts,tsx --cache --fix",
"lint:md": "eslint packages --ext md --no-eslintrc --config .eslintrc-md.json --cache",
"lint:md:fix": "eslint packages --ext md --no-eslintrc --config .eslintrc-md.json --cache --fix",
"lint": "npm run lint:js && npm run lint:md",
"lint:fix": "npm run lint:js:fix && npm run lint:md:fix",
"test": "TZ=EST jest packages --passWithNoTests",
"test:a11y": "npm run test:a11y -w @patternfly/virtual-assistant",
"serve:a11y": "npm run serve:a11y -w @patternfly/virtual-assistant"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/plugin-proposal-private-property-in-object": "^7.19.6",
"@babel/preset-env": "^7.24.0",
"@babel/preset-flow": "^7.24.0",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@octokit/rest": "^18.0.0",
"@patternfly/documentation-framework": "^6.0.0-alpha.121",
"@patternfly/patternfly": "^6.0.0",
"@patternfly/react-icons": "^6.0.0",
"@swc/core": "1.3.96",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "14.5.2",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"babel-jest": "^29.7.0",
"babel-polyfill": "6.26.0",
"chokidar": "^3.6.0",
"concurrently": "^8.2.2",
"cypress": "^13.7.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-markdown": "^1.0.2",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"fs-extra": "^11.2.0",
"glob": "^10.3.10",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.7.0",
"prettier": "3.2.5",
"react": "^18",
"react-dom": "^18",
"rimraf": "^5.0.5",
"sass": "^1.72.0",
"sass-loader": "^14.1.1",
"serve": "^14.2.1",
"start-server-and-test": "^2.0.3",
"surge": "^0.23.1",
"swc-loader": "0.2.3",
"ts-jest": "29.1.2",
"wait-on": "^7.2.0",
"whatwg-fetch": "^3.6.20"
},
"dependencies": {
"react-dropzone": "^14.2.3"
}
}