This repository has been archived by the owner on Aug 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.46 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
{
"name": "animulet",
"version": "0.0.1",
"main": "src/index.ts",
"license": "MIT",
"repository": "git@github.com:felipegchi/Animulet.git",
"scripts": {
"dev": "ts-node-dev -r tsconfig-paths/register -r dotenv/config src/app.ts",
"build": "tsc --project tsconfig.json",
"start": "node -r ts-node/register/transpile-only -r tsconfig-paths/register ./dist/src/app.js",
"test": "jest test"
},
"dependencies": {
"@prisma/client": "^3.2.1",
"@types/jsonwebtoken": "^8.5.5",
"argon2": "^0.28.2",
"eslint-plugin-jest": "^24.5.0",
"express": "^4.17.1",
"fp-ts": "^2.11.4",
"io-ts": "^2.2.16",
"jest": "^27.2.4",
"jsonwebtoken": "^8.5.1",
"winston": "^3.3.3",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.2",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"dotenv": "^10.0.0",
"eslint": "^7.12.1",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^4.2.1",
"nodemon": "^2.0.13",
"prettier": "^2.4.1",
"prisma": "3.2.1",
"supertest": "^6.1.6",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.11.0",
"typescript": "^4.4.3"
}
}