-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.69 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
{
"name": "tilda",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"tsc": "tsc --noEmit",
"test:jest": "jest",
"test": "npm run lint && npm run format:check && npm run tsc && npm run test:jest",
"export-image-paths": "node exportImagePaths.js",
"prebuild": "npm run export-image-paths"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@serwist/next": "^9.0.9",
"@tabler/icons-react": "^3.19.0",
"clsx": "^2.1.1",
"html5-qrcode": "^2.3.8",
"jsbarcode": "^3.11.6",
"lodash": "^4.17.21",
"next": "14.2.15",
"next-pwa": "^5.6.0",
"qrcode": "^1.5.4",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.53.1",
"sharp": "^0.33.5",
"use-debounce": "^10.0.4",
"uuid": "^11.0.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.13",
"@types/qrcode": "^1.5.5",
"@types/react": "^18",
"@types/react-dom": "^18",
"daisyui": "^4.12.13",
"eslint": "^8",
"eslint-config-next": "14.2.15",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8",
"prettier": "^3.3.3",
"serwist": "^9.0.9",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}