-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
105 lines (105 loc) · 3.54 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "authorization-management-component",
"version": "0.1.1",
"private": true,
"scripts": {
"build": "next build",
"prepare:e2e": "cd e2e/test-app ; npm ci; npm run build",
"start:e2e": "cd e2e/test-app ; npm run start",
"dev:e2e": "cd e2e/test-app ; npm ci ; npm run dev",
"dev": "next dev",
"format": "prettier --write .",
"lint": "npm run lint:eslint; npm run lint:prettier",
"lint:fix": "npm run lint:eslint -- --fix; npm run lint:prettier -- --write",
"lint:eslint": "eslint . --ext=.js,.jsx,.ts,.tsx",
"lint:prettier": "prettier --check .",
"prepare": "husky && npm run preparePurposes",
"start": "next start",
"test": "TZ=UTC jest --runInBand",
"test:e2e": "playwright test",
"update-clientId": "npm ci && tsc --project tsconfig.scripts.json && node dist/scripts/updateClientId.js",
"bump-version": "changeset add",
"version": "changeset version",
"release": "changeset publish",
"preparePurposes": "tsc --project tsconfig.scripts.json && node dist/scripts/preparePurposes.js ./src/cache"
},
"dependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.10",
"@comunica/context-entries": "^4.0.2",
"@comunica/core": "^4.0.2",
"@inrupt/solid-client": "^2.1.2",
"@inrupt/solid-client-access-grants": "^3.2.1",
"@inrupt/solid-client-authn-browser": "^2.3.0",
"@inrupt/solid-client-authn-node": "^2.2.4",
"@inrupt/solid-client-vc": "^1.1.0",
"@popperjs/core": "^2.11.8",
"@rdfjs/types": "^1.1.2",
"@sentry/nextjs": "^8.50.0",
"@types/accepts": "^1.3.7",
"@types/n3": "^1.21.1",
"accepts": "^1.3.8",
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.11.3",
"event-emitter-promisify": "^1.1.0",
"n3": "^1.23.1",
"next": "^15.1.4",
"rdf-dereference": "^4.0.0",
"rdf-namespaces": "^1.11.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"reactstrap": "^9.2.3",
"sass": "^1.83.4",
"uuid": "^10.0.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.0",
"@inrupt/eslint-config-base": "^3.2.4",
"@inrupt/eslint-config-react": "^3.2.4",
"@inrupt/internal-playwright-helpers": "^3.2.4",
"@inrupt/internal-playwright-testids": "^3.2.4",
"@inrupt/internal-test-env": "^3.2.4",
"@inrupt/jest-jsdom-polyfills": "^3.2.4",
"@next/eslint-plugin-next": "^15.1.4",
"@playwright/test": "~1.47.2",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.5.2",
"@types/axe-core": "^3.0.6",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.10",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"axe-core": "^4.10.2",
"dotenv-flow": "^4.1.0",
"eslint": "^8.57.0",
"eslint-config-next": "^15.1.4",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-header": "^3.1.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --ext=.js,.jsx,.ts,.tsx --fix --max-warnings=0",
"*.{js,jsx,ts,tsx,css,md,html,json}": "prettier --write"
}
}