-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.42 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
{
"name": "scrolls-base",
"version": "1.0.0",
"description": "Scrolls is a web application that enables and encourages users to draft their books with ease and consistency.",
"main": "src/index.ts",
"scripts": {
"build": "rimraf ./build && tsc",
"dev": "ts-node-dev --respawn --transpile-only -r tsconfig-paths/register src/index.ts",
"start": "tsc && node ./build/index.js",
"prisma:generate": "prisma generate",
"prepare": "husky"
},
"keywords": [
"fastify",
"nodejs",
"typescript",
"book",
"writing",
"drafts"
],
"author": "OVECJOE",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"fastify-tsconfig": "^2.0.0",
"husky": "^9.0.11",
"prettier": "^3.3.0",
"rimraf": "^5.0.7",
"tap": "^19.0.2",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.11.0",
"typescript": "^5.4.5"
},
"dependencies": {
"@fastify/cors": "^9.0.1",
"@fastify/type-provider-typebox": "^4.0.0",
"@prisma/client": "^5.14.0",
"@sinclair/typebox": "^0.32.31",
"@supabase/supabase-js": "^2.43.4",
"fastify": "^4.27.0",
"prisma": "^5.14.0",
"supabase": "^1.172.2"
},
"lint-staged": {
"*.ts": [
"prettier --config .prettierrc.json 'src/**/*.ts' --write",
"eslint . --ext .ts --fix"
]
}
}