-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.47 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": "thepixardb",
"version": "0.0.2",
"description": "The Pixar Database API",
"repository": "[email protected]:malaquiasdev/thepixardb.git",
"author": "Mateus Malaquias <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"postinstall": "husky install && chmod ug+x .husky/*",
"prebuild": "rimraf dist",
"build": " tsc",
"dev": "nodemon --exec ts-node -- ./src/server/index.ts",
"start": "node ./build/src/server/index.js",
"test": "jest --forceExit --detectOpenHandles",
"test:cov": "jest --coverage",
"lint": "eslint --ignore-path .gitignore --ext .ts src/",
"lint:fix": "npm run lint -- --fix"
},
"dependencies": {
"aws-lambda-fastify": "^2.1.0",
"aws-sdk": "^2.1069.0",
"dotenv": "^16.0.0",
"fastify": "^3.27.1",
"fastify-blipp": "^3.1.0",
"fastify-plugin": "^3.0.1",
"fastify-swagger": "^4.15.0"
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@types/dotenv": "^8.2.0",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.15",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.0",
"jest": "^27.5.0",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
}
}