-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
86 lines (86 loc) · 2.91 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
{
"name": "sw360-frontend",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"classnames": "^2.3.2",
"crypto-js": "^4.2.0",
"dotenv": "^16.3.1",
"flag-icons": "^6.11.2",
"gridjs": "^6.2.0",
"html-react-parser": "^5.1.16",
"jwt-decode": "^4.0.0",
"next": "^14.1.4",
"next-auth": "^4.24.7",
"next-intl": "^3.23.2",
"react": "^18.2.0",
"react-bootstrap": "^2.10.1",
"react-cookie": "^7.0.1",
"react-dom": "^18.2.0",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@eslint/config-array": "^0.18.0",
"@storybook/addon-essentials": "^7.6.7",
"@storybook/addon-interactions": "^7.6.7",
"@storybook/addon-links": "^7.6.7",
"@storybook/addon-onboarding": "^1.0.10",
"@storybook/blocks": "^7.6.7",
"@storybook/nextjs": "^7.6.7",
"@storybook/react": "^7.6.7",
"@storybook/testing-library": "^0.2.2",
"@types/country-list": "^2.1.3",
"@types/crypto-js": "^4.2.1",
"@types/node": "^20.10.5",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@typescript-eslint/typescript-estree": "^6.20.0",
"bootstrap": "^5.3.2",
"classnames": "^2.3.2",
"commitlint": "^17.8.1",
"country-list": "^2.3.0",
"eslint": "^8.57.1",
"eslint-config-next": "^14.1.4",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-storybook": "^0.6.15",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"react-icons": "^4.12.0",
"storybook": "^7.6.7",
"stylelint": "^16.2.0",
"stylelint-config-clean-order": "^5.4.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-prettier": "^5.0.0",
"ts-node": "^10.9.2",
"tsc-files": "^1.1.4",
"typescript": "^5.4.4"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --config ./.prettierrc.js --write"
],
"**/*.{css,scss,md,html,json}": [
"prettier --config ./.prettierrc.js --write"
]
}
}