-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.34 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-sandbox",
"version": "1.0.0",
"description": "React typescript sandbox for playing around with various frontend things",
"main": "index.tsx",
"author": "Joshua D. Graber",
"license": "MIT",
"type": "module",
"scripts": {
"build": "npm run clean && tsc && vite build",
"clean": "rimraf dist",
"dev": "vite",
"lint": "eslint './src/**/*.{ts,tsx,js,jsx}'",
"lint:fix": "eslint './src/**/*.{ts,tsx,js,jsx}' --fix",
"preview": "vite preview",
"start": "vite serve"
},
"devDependencies": {
"@types/babel__core": "^7.20.1",
"@types/node": "18.18.3",
"@types/react": "18.2.74",
"@types/react-dom": "18.2.24",
"@typescript-eslint/eslint-plugin": "6.7.2",
"@typescript-eslint/parser": "6.7.2",
"@vitejs/plugin-react": "^4.0.4",
"eslint": "8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"prettier": "3.0.3",
"rimraf": "^5.0.1",
"sass": "^1.62.1",
"ts-node": "10.9.1",
"typescript": "5.2.2",
"vite": "^4.4.9",
"vite-plugin-html": "^3.2.0",
"vite-tsconfig-paths": "^4.2.0"
},
"dependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
}
}