-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.22 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
{
"name": "flipbookqr",
"license": "MIT",
"author": {
"name": "Patrick Cason",
"email": "me@patrickcason.com",
"url": "https://patrickcason.com"
},
"private": true,
"packageManager": "pnpm@9.0.6",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"test": "turbo run test",
"benchmark": "turbo run benchmark",
"format": "turbo run format",
"format:fix": "turbo run format:fix",
"pre:commit": "lint-staged",
"prepare": "husky install",
"changeset": "changeset",
"release": "changeset publish"
},
"dependencies": {
"@nuintun/qrcode": "3.0.1",
"omggif": "^1.0.10",
"loglevel": "^1.9.2"
},
"devDependencies": {
"@changesets/cli": "^2.27.8",
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@types/jest": "^29.5.12",
"@types/node": "^20.16.5",
"@types/omggif": "^1.0.5",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/w3c-image-capture": "^1.0.10",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"tsup": "^8.2.4",
"turbo": "^2.1.1"
}
}