-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.92 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"type": "module",
"scripts": {
"start": "ts-node src/server.ts",
"start:dev": "nodemon src/server.ts",
"build": "tsc",
"eslint": "eslint ./",
"eslint-fix": "eslint ./ --fix",
"db:deploy": "prisma migrate deploy",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:migrate-from-db": "prisma db pull && prisma migrate dev",
"db:seed": "prisma db seed"
},
"name": "myfin-api",
"version": "2.5.0",
"description": "NodeJS API for Myfin",
"main": "src/server.js",
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/node": "^20.4.10",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.47.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-google": "^0.14.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.1",
"prisma": "^5.8.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aFaneca/myfin.git"
},
"author": "António Faneca",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/aFaneca/myfin/issues"
},
"homepage": "https://github.com/aFaneca/myfin#readme",
"dependencies": {
"@prisma/client": "^5.8.0",
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"dayjs": "^1.10.6",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.6.0",
"joi": "^17.3.0",
"mysql2": "^2.3.3"
},
"engines": {
"node": ">10.0.0"
}
}