-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 985 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
{
"name": "pixel-lobster",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "esbuild src/app.tsx --bundle --loader:.png=file --outfile=public/app.js ",
"serve": "esbuild src/app.tsx --bundle --loader:.png=file --outdir=public --servedir=public "
},
"keywords": [],
"author": "Vincent Sit",
"license": "ISC",
"dependencies": {
"colorjs.io": "^0.4.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.1",
"styled-components": "^6.1.8",
"valtio": "^1.13.1"
},
"devDependencies": {
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"esbuild": "^0.19.11",
"eslint": "^8.56.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-valtio": "^0.6.2",
"prettier": "3.2.5",
"typescript": "^5.3.3"
}
}