-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.93 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
{
"name": "valintojen-toteuttaminen",
"version": "0.1.0",
"private": true,
"scripts": {
"prepare": "husky",
"noop": "",
"dev": "touch .env.development.local && node --env-file=.env.development --env-file=.env.development.local dev-server.mjs",
"dev-test": "TEST=true APP_URL=https://localhost:3404 VIRKAILIJA_URL=http://localhost:3104 npm run dev",
"build": "STANDALONE=true next build",
"build-test": "APP_URL=https://localhost:3404 VIRKAILIJA_URL=http://localhost:3104 next build",
"start": "NODE_ENV=production npm run dev",
"start-test": "NODE_ENV=production npm run dev-test",
"lint": "eslint --max-warnings=0",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier -u -c *",
"prettier:fix": "prettier --write -u *",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"create-dev-certs": "mkdir -p certificates && cd certificates && mkcert localhost && mkcert -install",
"create-self-signed-dev-certs": "mkdir -p certificates && openssl req -x509 -newkey rsa:4096 -keyout ./certificates/localhost-key.pem -out ./certificates/localhost.pem -sha256 -days 365 -nodes -subj \"/C=XX/ST=StateName/L=CityName/O=CompanyName/OU=CompanySectionName/CN=CommonNameOrHostname\"",
"typecheck": "tsc",
"test-playwright-docker": "./scripts/run-playwright-tests-in-docker.sh",
"start-and-test-playwright-docker": "START_SERVER_AND_TEST_INSECURE=1 start-server-and-test start-test https://localhost:3404 'npm run test-playwright-docker -- $PLAYWRIGHT_ARGS'",
"node-extra-ca-certs": "export NODE_EXTRA_CA_CERTS=\"$(mkcert -CAROOT)/rootCA.pem\""
},
"dependencies": {
"@date-fns/tz": "^1.2.0",
"@ebay/nice-modal-react": "^1.2.13",
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^6.4.0",
"@mui/material": "^6.4.0",
"@mui/material-nextjs": "^6.3.1",
"@opetushallitus/oph-design-system": "github:opetushallitus/oph-design-system#v0.1.8",
"@tanstack/react-query": "^5.62.8",
"@tanstack/react-query-devtools": "^5.62.8",
"@xstate/react": "^5.0.0",
"date-fns": "^4.1.0",
"i18next": "^24.2.0",
"i18next-fetch-backend": "^6.0.0",
"next": "^15.1.2",
"nextjs-toploader": "^3.7.15",
"nuqs": "^2.2.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-error-boundary": "^4.1.2",
"react-i18next": "^15.2.0",
"remeda": "^2.18.0",
"xstate": "^5.19.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.1",
"@axe-core/react": "^4.10.1",
"@eslint/compat": "^1.2.4",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@next/eslint-plugin-next": "^15.1.2",
"@opentelemetry/api": "^1.9.0",
"@playwright/test": "^1.49.1",
"@statelyai/inspect": "^0.4.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/css.escape": "^1.5.2",
"@types/eslint__eslintrc": "^2.1.2",
"@types/eslint-config-prettier": "^6.11.3",
"@types/node": "^20.17.10",
"@types/react": "^19",
"@types/react-dom": "^19",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/eslint-plugin": "^1.1.20",
"autoprefixer": "^10.4.20",
"babel-plugin-react-compiler": "^19.0.0-beta-df7b47d-20241124",
"css.escape": "^1.5.1",
"eslint": "^9",
"eslint-config-next": "^15.1.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-next": "^0.0.0",
"eslint-plugin-playwright": "^2.1.0",
"http-proxy-middleware": "^3.0.3",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.11",
"postcss": "^8",
"prettier": "^3.4.2",
"start-server-and-test": "^2.0.9",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1",
"vitest": "^2.1.8"
}
}