-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.18 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 3.18 KB
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
{
"name": "nmsud.form",
"version": "1.0.19",
"author": "Kurt Lourens",
"type": "module",
"description": "A custom solution for capturing data for the yearly Unification Days event",
"scripts": {
"setup": "npm-run-all --sequential setup:*",
"setup:hook": "git config core.hooksPath .githooks/",
"setup:db-tools": "npm install -g @xata.io/cli@latest",
"start:api": "dotenv -- tsx watch --ignore src/**/*.spec.ts --tsconfig tsconfig.server.json src/api/api.ts",
"start:public": "cd public && npx alive-server",
"start:web": "vite --host",
"build": "npm-run-all --sequential build:*",
"build:web": "dotenv -- vite build",
"build:server": "tsc -p ./tsconfig.server.json && resolve-tspaths -p ./tsconfig.server.json --out ./build/src",
"data:downloader": "dotenv -- tsx --tsconfig tsconfig.server.json src/data/downloader.ts",
"data:dev": "dotenv -- tsx --tsconfig tsconfig.server.json src/data/interactive.ts",
"db:generate": "npx xata codegen",
"storybook:dev": "storybook dev -p 3003",
"storybook:build": "storybook build --disable-telemetry",
"docs:dev": "vitepress dev --port 3002",
"docs:build": "vitepress build",
"docs:preview": "vitepress preview",
"test:dev": "vitest --ui --api.port 3001",
"test:coverage": "vitest run --coverage",
"test:coverage-badge": "node --experimental-modules scripts/generateCoverageBadge.js",
"test": "vitest run"
},
"dependencies": {
"@koa/cors": "^5.0.0",
"@koa/router": "^12.0.0",
"@xata.io/client": "^0.28.4",
"dayjs": "^1.11.10",
"dotenv-cli": "^7.3.0",
"koa": "^2.14.1",
"koa-body": "^6.0.1",
"koa-bodyparser": "^4.3.0",
"koa-static": "^5.0.0",
"koa2-swagger-ui": "^5.10.0",
"reflect-metadata": "^0.2.1",
"resolve-tspaths": "^0.8.17",
"sharp": "^0.33.2",
"typedi": "^0.10.0",
"vite": "^4.3.9",
"vite-plugin-package-version": "^1.0.2"
},
"devDependencies": {
"@hcaptcha/types": "^1.0.3",
"@hope-ui/solid": "^0.6.7",
"@solidjs/router": "^0.8.2",
"@stitches/core": "^1.2.8",
"@storybook/addon-essentials": "^8.0.2",
"@storybook/addon-interactions": "^8.0.2",
"@storybook/addon-links": "^8.0.2",
"@storybook/addon-mdx-gfm": "^8.0.2",
"@storybook/blocks": "^8.0.2",
"@storybook/test": "^8.0.2",
"@types/koa": "^2.13.5",
"@types/koa__cors": "^3.3.1",
"@types/koa__router": "^12.0.0",
"@types/koa-bodyparser": "^4.3.10",
"@types/koa-static": "^4.0.4",
"@types/node": "^18.19.10",
"@types/prompts": "^2.4.9",
"@vitest/coverage-v8": "^1.3.1",
"@vitest/ui": "^1.3.1",
"classnames": "^2.5.1",
"copyfiles": "^2.4.1",
"jsdom": "^24.0.0",
"node-html-parser": "^6.1.13",
"npm-run-all": "^4.1.5",
"openapi-types": "^12.1.3",
"prompts": "^2.4.2",
"rimraf": "^4.2.0",
"sass": "^1.58.0",
"solid-devtools": "^0.27.3",
"solid-js": "^1.7.6",
"solid-transition-group": "^0.0.10",
"storybook": "^8.0.2",
"storybook-solidjs": "^1.0.0-beta.2",
"storybook-solidjs-vite": "^1.0.0-beta.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.3",
"vite-plugin-solid": "^2.7.0",
"vitepress": "^1.0.0-rc.44",
"vitest": "^1.2.2"
}
}