-
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) · 2.98 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.98 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": "pelican-ui",
"version": "0.1.0",
"private": true,
"browserslist": [
"last 2 versions",
"Firefox >= 60",
"Chrome >= 67",
"Safari >= 11",
"iOS >= 11.3",
"Android >= 67"
],
"scripts": {
"dev": "next dev",
"dev:static": "cross-env APP_ENV=static next dev",
"build": "next build",
"postbuild": "npx next-sitemap",
"start": "next start",
"lint": "npm run lint:ts && npm run lint:scss",
"lint:fix": "npm run lint:ts:fix && npm run lint:scss:fix",
"lint:ts": "next lint",
"lint:scss": "npx stylelint \"**/*.{css,scss}\"",
"lint:ts:fix": "next lint --fix",
"lint:scss:fix": "npm run lint:scss --fix",
"prepare": "husky",
"playwright:run": "npx playwright test",
"playwright:open": "npx playwright test --ui",
"playwright:run:e2e": "npx playwright test --config=playwright.e2e.config.ts",
"playwright:open:e2e": "npx playwright test --ui --config=playwright.e2e.config.ts",
"playwright:run:load-tests": "npx playwright test --config=playwright.load-tests.config.ts",
"update-snapshots": "npx playwright test --update-snapshots",
"generate-api-types": "docker-compose -f ./api-types/docker-compose.yml up --build ts_generator",
"jest:run": "jest"
},
"dependencies": {
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"dotenv": "^17.2.2",
"next": "^14.2.35",
"next-sitemap": "^4.2.3",
"plyr-react": "^5.3.0",
"qs": "^6.14.0",
"react": "^18",
"react-dom": "^18",
"react-focus-lock": "^2.13.6",
"react-glider": "^4.0.2",
"react-markdown": "^9.1.0",
"rehype-raw": "^7.0.0",
"sharp": "^0.34.3"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@playwright/test": "^1.53.0",
"@stylistic/eslint-plugin": "^1.8.1",
"@stylistic/stylelint-config": "^1.0.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/qs": "^6.14.0",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-plyr": "^2.1.4",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"axe-core": "^4.10.3",
"axe-html-reporter": "^2.2.11",
"axios": "^1.10.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-next": "14.2.30",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-import-newlines": "^1.4.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.2",
"file-loader": "^6.2.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"sass": "^1.89.2",
"stylelint": "^16.21.1",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-order": "^6.0.4",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}