-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.18 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.18 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
{
"name": "eatwell-extension",
"version": "0.1.0",
"private": true,
"description": "EatWell Chrome extension scaffold (Manifest V3) with React, TypeScript, Vite and Tailwind",
"scripts": {
"dev": "vite",
"build": "vite build",
"postbuild": "node ./scripts/copy-static.js",
"lint": "eslint --ext .ts,.tsx src",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"test": "vitest"
},
"keywords": [],
"author": "",
"license": "GNU",
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/chrome": "^0.0.194",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"autoprefixer": "^10.4.14",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.32.2",
"happy-dom": "^20.0.10",
"jsdom": "^27.0.1",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"tailwindcss": "^3.4.5",
"typescript": "^5.4.0",
"vite": "^5.1.0",
"vitest": "^1.0.0"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}