-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.14 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
{
"name": "dantecalderon-api",
"version": "0.0.1",
"description": "",
"author": "Dante Calderon<mail@dantecalderon.dev>",
"license": "MIT",
"scripts": {
"start": "node dist/index.js",
"start:dev": "nodemon",
"format": "prettier --write \"src/**/*.ts\"",
"build": "npm run tsc",
"test": "jest",
"tsc": "tsc"
},
"devDependencies": {
"@types/jest": "^29.5.8",
"@types/lodash.get": "^4.4.9",
"@types/node": "^20.9.0",
"@types/xml2js": "^0.4.14",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tslint": "^6.1.0"
},
"jest": {
"preset": "ts-jest"
},
"dependencies": {
"@fastify/cors": "^8.4.1",
"@fastify/helmet": "^11.1.1",
"axios": "^1.6.1",
"comma-number": "^2.0.1",
"dotenv": "^16.3.1",
"fastify": "^4.24.3",
"fastify-helmet": "^7.1.0",
"graphql": "^16.8.1",
"lodash.get": "^4.4.2",
"mercurius": "^13.2.2",
"node-cache": "^5.1.2",
"node-emoji-new": "^3.4.5",
"querystring": "^0.2.0",
"typescript": "^5.2.2",
"winston": "^3.11.0",
"xml2js": "^0.6.2"
}
}