generated from DTS-STN/next-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
81 lines (81 loc) · 2.53 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
{
"name": "passport-status",
"version": "0.1.0",
"scripts": {
"dev": "next dev | pino-pretty",
"build": "next build",
"start": "next start",
"test": "npm run lint && npm run test:e2e && npm run test:unit",
"lint": "next lint",
"cypress": "cypress open",
"cypress:run": "cypress run",
"e2e": "start-server-and-test dev http://localhost:3000 cypress",
"test:e2e": "start-server-and-test dev http://localhost:3000 cypress:run",
"report:merge": "mochawesome-merge cypress/results/json/*.json > index.json",
"report:generate": "marge index.json --reportDir report --assetsDir report/assets --reportPageTitle index.html",
"test:unit": "jest",
"test:coverage": "jest --coverage --forceExit",
"prepare": "husky",
"tsc:validate": "tsc --noEmit --incremental false"
},
"dependencies": {
"@tanstack/react-query": "5.62.7",
"cookies-next": "5.0.2",
"date-fns": "4.1.0",
"formik": "2.4.6",
"i18next": "24.1.2",
"markdown-to-jsx": "7.7.1",
"next": "15.1.0",
"next-i18next": "15.4.1",
"next-seo": "6.6.0",
"pino": "9.5.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-focus-on": "3.9.4",
"react-i18next": "15.2.0",
"react-idle-timer": "5.7.2",
"sharp": "0.33.5",
"yup": "1.6.0"
},
"devDependencies": {
"@faker-js/faker": "9.3.0",
"@tailwindcss/typography": "0.5.15",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.1.0",
"@trivago/prettier-plugin-sort-imports": "5.2.0",
"@types/jest": "29.5.14",
"@types/jest-axe": "3.5.9",
"@types/node": "22.10.1",
"@types/react": "18.3.12",
"autoprefixer": "10.4.20",
"axe-core": "4.10.2",
"babel-jest": "29.7.0",
"cypress": "13.16.1",
"cypress-axe": "1.5.0",
"cypress-multi-reporters": "2.0.4",
"eslint": "8.57.0",
"eslint-config-next": "15.1.0",
"husky": "9.1.7",
"identity-obj-proxy": "3.0.0",
"jest": "29.7.0",
"jest-axe": "9.0.0",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "15.2.11",
"mocha": "11.0.1",
"mochawesome": "7.1.3",
"mochawesome-merge": "4.3.0",
"mochawesome-report-generator": "6.2.0",
"node-mocks-http": "1.16.2",
"pino-pretty": "13.0.0",
"postcss": "8.4.49",
"prettier": "3.4.2",
"prettier-plugin-tailwindcss": "0.6.9",
"react-test-renderer": "18.3.1",
"start-server-and-test": "2.0.9",
"tailwindcss": "3.4.16",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.7.2"
}
}