-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.8 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
{
"name": "wedding",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "https://github.com/out-fox-it/wedding"
},
"license": "MIT",
"private": true,
"engines": {
"node": "^18"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"tsc": "tsc --incremental false --project .",
"tsc:scripts": "tsc --project scripts",
"code:check": "run-p --print-label tsc tsc:scripts format lint",
"code:fix": "run-p --print-label format:fix lint:fix",
"script": "ts-node"
},
"dependencies": {
"@strv/eslint-config-node": "^3.3.1",
"@strv/eslint-config-react": "^4.3.1",
"@strv/eslint-config-typescript": "^4.1.2",
"@strv/prettier-config": "^2.0.0",
"@total-typescript/ts-reset": "^0.4.2",
"@types/jsdom": "^21.1.1",
"@types/node": "^20.4.2",
"@types/node-fetch": "^2.6.4",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@vercel/analytics": "^1.0.2",
"autoprefixer": "^10.4.14",
"clsx": "^2.0.0",
"daisyui": "^3.6.3",
"eslint": "^8.45.0",
"eslint-config-next": "^13.4.10",
"fp-ts": "^2.16.0",
"io-ts": "^2.2.20",
"io-ts-types": "^0.5.19",
"jsdom": "^22.1.0",
"monocle-ts": "^2.3.13",
"newtype-ts": "^0.3.5",
"next": "^13.4.12",
"next-international": "^0.9.3",
"node-fetch": "^3.3.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.26",
"prettier": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.5.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sharp": "^0.32.6",
"tailwind-merge": "^1.14.0",
"tailwindcss": "^3.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}