-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.56 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
{
"name": "nlw-expert-14-polls",
"version": "1.0.0",
"private": false,
"description": "This project is a simple API for creating and managing polls. It was developed during the Next Level Week 14 event, promoted by Rocketseat.",
"main": "dist/http/server.js",
"scripts": {
"start": "npm run build && node dist/http/server.js",
"build": "tsc",
"dev": "tsx watch src/http/server.ts",
"migrate:run": "prisma migrate dev",
"migrate:reset": "prisma migrate reset",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"prepare": "husky"
},
"keywords": [
"fastify",
"prisma",
"typescript",
"zod",
"rocketseat",
"nlw",
"next level week"
],
"author": "Jhonatan Hardt de Medeiros",
"repository": {
"url": "git+https://github.com/JhonatanMedeiros/nlw-expert-14-polls.git",
"type": "git"
},
"license": "MIT",
"dependencies": {
"@fastify/cookie": "^9.3.1",
"@fastify/websocket": "^8.3.1",
"@prisma/client": "^5.9.1",
"fastify": "^4.26.0",
"ioredis": "^5.3.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@types/node": "^20.11.16",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"eslint": "^8.56.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"husky": "^9.0.10",
"prisma": "^5.9.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}