-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.24 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
{
"name": "roman-numerals-converter",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"lint:fix": "eslint './src/**/*.{ts,tsx,js,jsx}' --quiet --fix --ignore-path ./.gitignore",
"lint:format": "prettier --log-level warn --write \"./**/*.{js,jsx,ts,tsx,css,md,json}\" ",
"lint": "yarn lint:format && yarn lint:fix ",
"type-check": "tsc"
},
"dependencies": {
"eslint": "^8.57.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"roman-numerals-converter-lib": "^1.0.7"
},
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react": "^1.3.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jsdom": "^24.1.0",
"pre-commit": "^1.2.2",
"prettier": "^3.3.1",
"tsx": "^4.15.1",
"typescript": "^4.5.5",
"vite": "^5.2.13"
},
"pre-commit": "lint",
"license": "MIT"
}