-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.34 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
{
"name": "jarvs-calculator",
"version": "1.0.0",
"description": "JARVS (Just A Rather Very Simple) Calculator",
"keywords": [
"Lexer",
"Recursive descent parser",
"Pratt parser",
"Abstract syntax tree",
"Interpreter"
],
"repository": "https://github.com/Yoh0xFF/jarvs-calculator.git",
"license": "MIT",
"author": "Ioram Gordadze <Yoh0xFF@gmail.com>",
"type": "module",
"scripts": {
"build": "tsc && vite build",
"deploy": "gh-pages -d dist -u 'github-actions-bot <support+actions@github.com>'",
"format": "prettier --no-error-on-unmatched-pattern --write \"./**/*.{js,ts,jsx,tsx}\" && prettier --write package.json",
"git:clear": "git remote prune origin && git branch -vv | grep 'origin/.*: gone]' | awk '{print $1}' | xargs git branch -D",
"postinstall": "husky init && npx path-exists-cli .husky && echo \"npm run pre-commit\" > .husky/pre-commit && prettier --write package.json",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"pre-commit": "lint-staged",
"prepare": "husky",
"start": "vite",
"start:preview": "vite preview",
"test": "vitest run",
"test:dev": "vitest"
},
"lint-staged": {
"*.{js,jsx,mjs,cjs,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,scss,md,html}": [
"prettier --write"
]
},
"dependencies": {
"dotenv": "17.4.2",
"react": "19.2.6",
"react-dom": "19.2.6"
},
"devDependencies": {
"@eslint/js": "9.39.4",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/node": "25.9.1",
"@types/react": "19.2.15",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.0.2",
"eslint": "9.39.4",
"eslint-config-prettier": "9.1.2",
"eslint-plugin-prettier": "5.5.6",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.1.1",
"gh-pages": "6.3.0",
"globals": "17.6.0",
"husky": "9.1.7",
"jsdom": "29.1.1",
"lint-staged": "17.0.7",
"prettier": "3.8.3",
"prettier-plugin-organize-imports": "4.3.0",
"prettier-plugin-packagejson": "3.0.2",
"typescript": "6.0.3",
"typescript-eslint": "8.60.0",
"vite": "8.0.16",
"vitest": "4.1.8",
"web-vitals": "5.3.0"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.61.0"
}
}