-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.42 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
{
"name": "react-agile-css",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev-vite": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"start": "npm run build && vite preview",
"lint": "eslint --ext .ts,.tsx src --color",
"format": "prettier --write \"./src/**/*.{ts,tsx,json}\"",
"prepare": "husky install",
"analyze": "npm run lint && tsc && vite build --mode=analyze && source-map-explorer 'dist/assets/*.js'",
"agile-css": "agile-css -w",
"prebuild": "agile-css",
"dev": "concurrently --kill-others \"npm run dev-vite\" \"npm run agile-css\""
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-gh-corners": "^1.1.1"
},
"devDependencies": {
"@total-typescript/ts-reset": "^0.4.2",
"@types/node": "^18.11.11",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"@vitejs/plugin-react": "^2.2.0",
"agile-css": "^2.1.12",
"concurrently": "^8.0.1",
"eslint": "^8.31.0",
"eslint-config-react-app": "^7.0.1",
"husky": "^8.0.0",
"lint-staged": "^13.1.0",
"prettier": "^2.8.2",
"sass": "^1.57.1",
"source-map-explorer": "^2.5.3",
"typescript": "^4.6.4",
"vite": "^3.2.3",
"vite-plugin-checker": "^0.5.1",
"vite-plugin-environment": "^1.1.3"
}
}