-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 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
55
56
57
58
59
{
"name": "fav-mov",
"version": "1.0.0",
"description": "Simple fav application",
"main": "index.js",
"scripts": {
"build": "rimraf dist && tsc",
"dev": "nodemon src/index.ts",
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install",
"migrate:make": "knex migrate:make",
"migrate:latest": "knex migrate:latest",
"migrate:rollback": "knex migrate:rollback",
"migrate:up": "knex migrate:up",
"migrate:down": "knex migrate:down",
"migrate:list": "knex migrate:list",
"seed:make": "knex seed:make",
"seed:run": "knex seed:run"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/autoload": "^5.7.1",
"@fastify/cors": "^8.3.0",
"@fastify/env": "^4.2.0",
"@fastify/jwt": "^7.2.0",
"@fastify/sensible": "^5.2.0",
"@fastify/swagger": "^8.9.0",
"@fastify/type-provider-typebox": "^3.5.0",
"dotenv": "^16.3.1",
"fastify": "^4.22.1",
"fastify-cli": "^5.8.0",
"fastify-plugin": "^4.5.1",
"knex": "^3.0.1",
"pg": "^8.11.3"
},
"devDependencies": {
"@types/node": "^20.5.7",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^39.0.0",
"fastify-tsconfig": "^1.0.1",
"husky": "^8.0.3",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"rimraf": "^5.0.1",
"tap": "^16.3.8",
"ts-node": "^10.9.1",
"tsx": "^3.12.8",
"typescript": "^5.2.2"
},
"lint-staged": {
"*.ts": [
"prettier --config .prettierrc 'src/**/*.ts' --write",
"eslint . --ext .ts --fix"
]
}
}