-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
122 lines (122 loc) · 3.66 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "enhanced-preprints-client",
"version": "0.1.0",
"private": true,
"dependencies": {
"@opentelemetry/api-logs": "^0.54.0",
"@vercel/otel": "^1.8.2",
"crc-32": "^1.2.2",
"html-react-parser": "^5.1.10",
"i18next": "^23.7.19",
"moment": "^2.30.1",
"next": "^14.0.4",
"pluralize": "^8.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^14.0.1"
},
"scripts": {
"build": "next build",
"start": "next start",
"start:dev": "NODE_OPTIONS='--inspect' next dev",
"test": "jest",
"postinstall": "[ -d '.husky' ] && husky install || true",
"lint": "eslint --ext .tsx,.ts,.json src/ browser-tests/ wiremock/",
"lint:fix": "eslint --fix --ext .tsx,.ts,.json src/ browser-tests/ wiremock",
"lint-sass": "stylelint **/*.scss",
"lint-sass:fix": "stylelint --fix **/*.scss",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test:browser": "playwright test",
"test-storybook": "test-storybook"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.0.0",
"@playwright/test": "^1.29.2",
"@storybook/addon-a11y": "^8.0.0",
"@storybook/addon-actions": "^8.0.0",
"@storybook/addon-essentials": "^8.0.0",
"@storybook/addon-interactions": "^8.1.10",
"@storybook/addon-links": "^8.0.0",
"@storybook/addon-viewport": "^8.1.2",
"@storybook/cli": "^8.0.0",
"@storybook/nextjs": "^8.0.0",
"@storybook/node-logger": "^8.0.0",
"@storybook/react": "^8.0.0",
"@storybook/test": "^8.1.10",
"@storybook/test-runner": "^0.19.0",
"@storybook/testing-library": "^0.2.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^15.0.0",
"@testing-library/user-event": "^14.0.0",
"@types/i18next": "^13.0.0",
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"@types/pluralize": "^0.0.33",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@types/react-i18next": "^8.1.0",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"babel-plugin-named-exports-order": "^0.0.2",
"eslint": "^8.33.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-next": "^14.0.4",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-storybook": "^0.10.0",
"fetch-mock": "^9.11.0",
"husky": "^9.0.11",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"node-mocks-http": "^1.14.1",
"prettier": "^3.0.3",
"prop-types": "^15.8.1",
"react-app-polyfill": "^3.0.0",
"sass": "^1.54.5",
"storybook": "^8.0.0",
"storybook-dark-mode": "^4.0.0",
"stylelint": "^16.2.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-config-standard-scss": "^13.0.0",
"stylelint-order": "^6.0.0",
"stylelint-prettier": "^5.0.0",
"stylelint-selector-bem-pattern": "^4.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.0",
"webpack": "^5.74.0"
},
"packageManager": "[email protected]"
}