-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 975 Bytes
/
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
{
"name": "cats-and-dogs-food",
"description": "Cats & Dogs Food",
"author": "Dave Peck <davepeck@gmail.com>",
"private": true,
"type": "module",
"version": "0.1.0",
"license": "MIT",
"dependencies": {
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7",
"@typescript-eslint/parser": "^7",
"@vitejs/plugin-react": "^4",
"eslint": "^8",
"eslint-plugin-react-hooks": "^4",
"eslint-plugin-react-refresh": "^0",
"sass": "^1.71.1",
"typescript": "^5",
"vite": "^5",
"vscode-css-languageservice": "^6"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"ci": "npm run lint && npm run validate-css",
"validate-css": "node scripts/validate-css.mjs src"
}
}