-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
101 lines (101 loc) · 3.14 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "watcloud-website",
"version": "0.0.1",
"main": "next",
"scripts": {
"preprocess": "npm run generate-fixtures",
"dev": "npm run preprocess && next dev",
"build": "npm run preprocess && next build && ./scripts/post-build.sh",
"clean": "rm -rf .next out build node_modules/.cache",
"deepclean": "npm run clean && rm -rf node_modules",
"pretest": "npm run preprocess && npm run type-check && npm run lint",
"test": "jest",
"lint": "next lint --max-warnings 0",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"generate-fixtures": "./scripts/generate-fixtures.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WATonomous/infra-config.git"
},
"author": "WATonomous WATcloud",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/WATonomous/infra-config/issues"
},
"homepage": "https://github.com/WATonomous/infra-config#readme",
"description": "A website for WATcloud",
"dependencies": {
"@giscus/react": "^3.0.0",
"@hookform/resolvers": "^3.3.3",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tooltip": "^1.0.7",
"@rjsf/core": "^5.16.1",
"@rjsf/utils": "^5.16.1",
"@rjsf/validator-ajv8": "^5.16.1",
"@sentry/nextjs": "^7.76.0",
"@types/json-schema": "^7.0.15",
"@uppy/aws-s3": "^3.6.2",
"@uppy/dashboard": "^3.7.5",
"@uppy/react": "^3.2.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"cmdk": "^0.2.0",
"core-js": "^3.34.0",
"dayjs": "^1.11.10",
"js-base64": "^3.7.7",
"js-sha256": "^0.11.0",
"lucide-react": "^0.288.0",
"next": "^13.5.6",
"nextjs-google-analytics": "^2.3.3",
"nextra": "^2.13.2",
"nextra-theme-docs": "^2.13.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.49.2",
"sha512crypt-node": "^1.0.2",
"sonner": "^1.4.41",
"strip-indent": "^4.0.0",
"swr": "^2.2.4",
"tailwind-merge": "^1.14.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.22.4"
},
"devDependencies": {
"@next/bundle-analyzer": "^14.0.4",
"@types/jest": "^29.5.6",
"@types/node": "20.8.7",
"@types/react": "^18.2.31",
"ajv-cli": "^5.0.0",
"ajv-formats": "^2.1.1",
"autoprefixer": "^10.4.16",
"dedent": "^1.5.3",
"eslint": "8.52.0",
"eslint-config-next": "13.5.6",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-mdx": "^2.2.0",
"eslint-plugin-react-hooks": "^4.6.2",
"jest": "^29.7.0",
"postcss": "^8.4.31",
"quicktype": "^23.0.76",
"sharp-cli": "^4.2.0",
"slugify": "^1.6.6",
"tailwindcss": "^3.4.10",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=20.0.0"
}
}