forked from instructlab/ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.63 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
{
"name": "instructlab-ui",
"version": "0.1.0",
"description": "InstructLab UI",
"repository": "https://github.com/instructlab/ui.git",
"homepage": "https://github.com/instructlab/ui",
"license": "Apache-2.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"lint:fix": "npx eslint --fix 'src/**/*.{js,jsx,ts,tsx}'",
"pretty": "prettier --write 'src/**/*.{js,jsx,ts,tsx,css,md}'"
},
"dependencies": {
"@next/env": "^14.2.6",
"@patternfly/react-core": "^5.4.0",
"@patternfly/react-icons": "^5.3.2",
"@patternfly/react-styles": "^5.3.1",
"@patternfly/react-table": "^5.4.0",
"axios": "^1.7.7",
"js-yaml": "^4.1.0",
"next": "^14.2.13",
"next-auth": "^4.24.8",
"node-fetch": "^3.3.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"uuid": "^10.0.0",
"winston": "^3.14.2"
},
"devDependencies": {
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@next/eslint-plugin-next": "^14.2.3",
"@redhat-cloud-services/eslint-config-redhat-cloud-services": "^2.0.4",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.5.0",
"@types/react": "18.3.1",
"@types/react-dom": "18.3.0",
"@types/styled-components": "^5.1.34",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.3",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.3.3",
"typescript": "^5.4.5"
}
}