-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.57 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.57 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
{
"name": "nerd-startpage",
"private": true,
"version": "0.3.4",
"type": "module",
"scripts": {
"dev": "vite build --watch --mode development",
"firefox": "web-ext run --source-dir=dist --firefox=firefox",
"build": "tsc -b && vite build",
"preview": "vite preview",
"lint": "eslint -c .eslintrc.json --ext .js,.jsx,.ts,.tsx src",
"lint:fix": "npm run lint -- --fix",
"lint:css": "npx stylelint \"**/*.(s)?css\"",
"lint:css:fix": "npm run lint:css -- --fix",
"format": "prettier --write \"**/*.+(js|jsx|ts|tsx|json)\"",
"prepare": "cd .. && husky frontend/.husky",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@reduxjs/toolkit": "^2.6.1",
"classnames": "^2.5.1",
"merge-refs": "^2.0.0",
"modern-normalize": "^3.0.1",
"nanoid": "^5.1.5",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hotkeys-hook": "^5.0.1",
"react-redux": "^9.2.0",
"react-toastify": "^11.0.5",
"redux-persist": "^6.0.0",
"tldts": "^7.0.1",
"yaml": "^2.7.1",
"zod": "^3.24.2"
},
"devDependencies": {
"@storybook/addon-essentials": "^8.6.12",
"@storybook/addon-interactions": "^8.6.12",
"@storybook/addon-onboarding": "^8.6.12",
"@storybook/blocks": "^8.6.12",
"@storybook/react": "^8.6.12",
"@storybook/react-vite": "^8.6.12",
"@storybook/test": "^8.6.12",
"@types/firefox-webext-browser": "^120.0.4",
"@types/node": "^22.14.1",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/webextension-polyfill": "^0.12.3",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.12.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.1",
"sass-embedded": "^1.86.3",
"storybook": "^8.6.12",
"stylelint": "^16.18.0",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.8.0",
"type-fest": "^4.39.1",
"typescript": "^5.8.3",
"vite": "^6.2.0",
"vite-plugin-checker": "^0.9.1",
"vite-plugin-svgr": "^4.3.0",
"web-ext": "^8.5.0",
"webextension-polyfill": "^0.12.0"
}
}