-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.48 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
{
"name": "czdomains",
"version": "0.1.0",
"description": "Web applications for searching and browsing .cz TLD",
"main": "dist/index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"prebuild": "npm run clean",
"prestart:ci": "DB_PATH=$(node -e 'console.log(require(\"minidotenv\")()(\"DB_PATH\"))'); tsx src/migrate.ts --dbFilePath=$DB_PATH",
"start:ci": "NODE_ENV=production ts-node --transpile-only src/index.ts",
"start": "NODE_ENV=production ts-node --transpile-only src/index.ts",
"dev": "NODE_ENV=development ts-node-dev --respawn --transpile-only src/index.ts",
"dev:debug": "NODE_ENV=development ts-node-dev --inspect-brk --respawn --transpile-only src/index.ts",
"clean": "rm -rf dist",
"test": "jest",
"migrate": "tsx src/migrate.ts",
"import": "tsx src/import.ts",
"format": "prettier --write .",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "eslint --ext .ts src",
"prepare": "husky install",
"schema:compile": "json2ts -i src/**/*.schema.json > src/lib/types/schemas.d.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/comatory/czdomains.git"
},
"engines": {
"node": "18.20.5"
},
"keywords": [
"server",
"web",
"application",
"search",
"cz",
"czech",
"tld",
"domain"
],
"author": "Ondřej Synáček <[email protected]>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/comatory/czdomains/issues"
},
"homepage": "https://github.com/comatory/czdomains#readme",
"devDependencies": {
"@tsconfig/node18": "^1.0.1",
"@types/jest": "^29.5.2",
"@types/nunjucks": "^3.2.2",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"eslint": "^8.41.0",
"husky": "^8.0.3",
"json-schema-to-typescript": "^13.0.1",
"msw": "^1.2.2",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"typescript": "^5.0.3",
"undici": "^5.22.1"
},
"dependencies": {
"@fastify/cookie": "^8.3.0",
"@fastify/formbody": "^7.4.0",
"@fastify/rate-limit": "^8.0.1",
"@fastify/static": "^6.10.0",
"@fastify/view": "^7.4.1",
"fastify": "^4.15.0",
"minidotenv": "^1.1.0",
"nunjucks": "^3.2.4",
"nunjucks-intl": "^1.0.3",
"postgrator": "^7.1.1",
"sqlite": "^4.2.1",
"sqlite3": "^5.1.6",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsx": "^3.12.7",
"yargs": "^17.7.2",
"zod": "^3.21.4"
}
}