-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.86 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "framejoy",
"version": "0.1.0",
"private": true,
"license": "MIT",
"type": "module",
"engines": {
"node": "20",
"npm": "10"
},
"dependencies": {
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^27.5.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"file-saver": "^2.0.5",
"firebase": "^9.23.0",
"framer-motion": "^6.5.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-dropzone": "^14.2.3",
"react-icons": "^4.12.0",
"sharp": "^0.33.4",
"typescript": "^5.4.5"
},
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"emulators": "npm run build && firebase emulators:start --import ./emulator-export",
"lint": "eslint --ext .js,.ts src scripts functions",
"deploy": "npm run build && firebase deploy",
"framify": "node --require ts-node/register/transpile-only scripts/framify.ts && open output.jpg"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@eslint/js": "^9.4.0",
"@types/file-saver": "^2.0.7",
"@types/node": "^20.14.2",
"@types/sharp": "^0.30.5",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"firebase-tools": "^13.11.2",
"globals": "^15.4.0",
"ts-node": "^10.9.2",
"vite": "^5.2.13"
}
}