-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.22 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
{
"name": "localsqs",
"version": "0.2.0",
"description": "Develop and test your server with Offline AWS SQS!",
"scripts": {
"check:lint": "eslint \"src/**/*.ts\" --fix",
"check:type": "tsc --noEmit",
"check:test": "jest",
"check:test:coverage": "jest --coverage",
"check": "run-p check:*",
"dev": "nodemon",
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.build.json",
"start": "node dist/main"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@fastify/formbody": "7.4.0",
"dotenv": "16.0.3",
"fastify": "4.14.1",
"md5": "2.3.0",
"object-to-xml": "2.0.0"
},
"devDependencies": {
"@types/faker": "5.5.9",
"@types/jest": "29.5.10",
"@types/md5": "2.3.5",
"@types/node": "20.10.3",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.55.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "4.2.1",
"faker": "5.5.3",
"jest": "29.7.0",
"nodemon": "3.0.2",
"npm-run-all": "4.1.5",
"pino-pretty": "10.2.3",
"prettier": "2.8.8",
"rimraf": "5.0.5",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"typescript": "5.2.2"
}
}