-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.61 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
{
"name": "authorization-server",
"type": "module",
"version": "1.0.0",
"description": "Oauth2 authorization server for usage in my personal apps.",
"main": "build/index.js",
"scripts": {
"start": "node build/index.js",
"dev": "tsx watch index.ts",
"build": "rm -rf ./build && tsc -p tsconfig.json && npm run styles-prod && cp -R ./public ./build/public && cp -R ./frontend ./build/frontend",
"migrations": "node bin/migrate.js",
"dummy-data": "tsx bin/dummy_data.ts",
"dev-db": "npm run migrations && npm run dummy-data",
"styles": "tailwindcss -i ./frontend/styles/input.css -o ./public/build/style.css",
"styles-prod": "npm run styles -- --minify",
"test": "vitest",
"e2e": "playwright test",
"lint": "biome check",
"prettier": "biome format --write"
},
"author": "Danko Lučić",
"license": "AGPL-3.0-only",
"dependencies": {
"@fastify/cookie": "^10.0.1",
"@fastify/formbody": "^8.0.1",
"@fastify/helmet": "^12.0.1",
"@fastify/static": "^8.0.1",
"@fastify/type-provider-typebox": "^5.0.0",
"@fastify/view": "^10.0.1",
"@sinclair/typebox": "^0.33.12",
"argon2": "^0.41.1",
"date-fns": "^4.1.0",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"fastify": "^5.0.0",
"pg": "^8.13.0",
"postgrator": "^7.3.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.2",
"@playwright/test": "^1.47.2",
"@types/ejs": "^3.1.5",
"@types/node": "^22.7.3",
"@types/pg": "^8.11.10",
"@types/uuid": "^10.0.0",
"crypto-random-string": "^5.0.0",
"fastify-tsconfig": "^2.0.0",
"tailwindcss": "^3.4.13",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"uuid": "^10.0.0",
"vitest": "^2.1.1"
}
}