-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1014 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
36
37
38
{
"name": "image-editor",
"author": "mryhryki",
"private": true,
"type": "module",
"engines": {
"node": ">= 16",
"npm": ">= 8"
},
"scripts": {
"build": "vite build",
"dev": "vite --port 3000",
"deploy": "run-s lint type build sync",
"sync": "aws s3 sync ./dist/ s3://mryhryki-cdn/contents/app/image-markup/ --no-progress --exclude '*.DS_Store*'",
"preview": "vite preview --port 3000",
"fmt": "biome check --write ./src/",
"lint": "biome check ./src/",
"type": "tsc",
"type:watch": "tsc --watch"
},
"dependencies": {
"dexie": "^4.0.8",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"stackblur-canvas": "^2.7.0",
"styled-components": "^6.1.13"
},
"devDependencies": {
"@biomejs/biome": "1.9.3",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"@types/styled-components": "^5.1.34",
"@vitejs/plugin-react": "^4.3.2",
"npm-run-all": "^4.1.5",
"typescript": "^5.6.2",
"vite": "^5.4.8"
}
}