-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 890 Bytes
/
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
{
"name": "involves-backend",
"version": "1.0.0",
"description": "Backend for involves challange",
"main": "index.js",
"scripts": {
"serve:dev": "ts-node-dev app/server",
"test": "jest",
"test:unit": "jest ./test/unit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/victorfernandesraton/involves-backend.git"
},
"keywords": [],
"author": {
"name": "Victor Raton"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/victorfernandesraton/involves-backend/issues"
},
"homepage": "https://github.com/victorfernandesraton/involves-backend#readme",
"dependencies": {
"fastify": "^3.27.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/uuid": "^8.3.4",
"jest": "^27.5.0",
"ts-jest": "^27.1.3",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.5"
}
}