-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.17 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 3.17 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
82
83
84
85
86
87
88
89
90
91
92
{
"name": "ui",
"version": "2.3.0",
"description": "Lagoon UI",
"author": "amazee.io <hello@amazee.io> (http://www.amazee.io)",
"main": "src/index.js",
"license": "MIT",
"scripts": {
"dev": "yarn uilib:update && next dev --turbopack -p 3003",
"build": "yarn uilib:update && next build",
"start": "next start -p 3000",
"start:cypress": "next start -H 0.0.0.0 -p 3000",
"lint": "tsc && eslint --config .eslintrc.cjs 'src/**/*.{jsx,tsx}'",
"uilib:update": "yarn upgrade @uselagoon/ui-library",
"generateTourHash": "node tourHash.js",
"storybook": "storybook dev -p 6006",
"test-storybook": "test-storybook",
"build-storybook": "storybook build",
"serve-storybook": "storybook-server -s ./src",
"format": "yarn prettier --write ./src",
"format-check": "yarn prettier --c ./src",
"cypress:open": "cypress open --config-file cypress/cypress.config.ts",
"cypress:runAll": "cypress run --config-file cypress/cypress.config.ts",
"cypress:runGeneral": "cypress run --config-file cypress/cypress.config.ts --spec 'cypress/e2e/general/**/*.cy.ts'",
"cypress:runOrganizations": "cypress run --config-file cypress/cypress.config.ts --spec 'cypress/e2e/organizations/**/*.cy.ts'",
"cypress:runRbac": "cypress run --config-file cypress/cypress.config.ts --spec 'cypress/e2e/rbac/**/*.cy.ts'"
},
"dependencies": {
"@apollo/client": "^3.13.8",
"@apollo/experimental-nextjs-app-support": "^0.11.11",
"@bprogress/next": "^3.2.12",
"@tailwindcss/postcss": "^4.1.8",
"@types/git-url-parse": "^9.0.3",
"@uselagoon/ui-library": "github:uselagoon/ui-library#v0.1.8",
"cryptr": "^6.3.0",
"cypress-real-events": "^1.14.0",
"dayjs": "^1.11.13",
"express": "^4.21.0",
"git-url-parse": "^15.0.0",
"graphql-ws": "^5.16.0",
"lucide-react": "^0.526.0",
"next": "^15.4.4",
"next-auth": "^5.0.0-beta.28",
"next-runtime-env": "^3.3.0",
"nuqs": "^1.20.0",
"postcss": "^8.5.4",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tailwindcss": "^4.1.8"
},
"devDependencies": {
"@chromatic-com/storybook": "^2.0.2",
"@faker-js/faker": "8.4.1",
"@storybook/addon-essentials": "8.6.14",
"@storybook/addon-interactions": "8.6.14",
"@storybook/addon-links": "8.6.14",
"@storybook/addon-onboarding": "8.6.14",
"@storybook/core-events": "8.6.14",
"@storybook/nextjs": "8.6.14",
"@storybook/react": "8.6.14",
"@storybook/test": "8.6.14",
"@storybook/test-runner": "0.21.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20",
"@types/react": "19.1.6",
"@types/react-dom": "19.1.5",
"cypress": "14.0.3",
"cypress-network-idle": "^1.15.0",
"eslint": "^8",
"eslint-config-next": "15.3.3",
"eslint-plugin-storybook": "^0.8.0",
"msw": "^2.4.5",
"msw-storybook-addon": "^2.0.3",
"sass-embedded": "^1.97.1",
"storybook": "8.6.14",
"typescript": "^5",
"webpack": "5.98.0"
},
"resolutions": {
"string-width": "4.2.3",
"@types/react": "19.1.6",
"@types/react-dom": "19.1.5"
},
"overrides": {
"string-width": "4.2.3"
},
"msw": {
"workerDirectory": [
"public"
]
}
}