-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.06 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
{
"name": "harvest-api",
"version": "1.0.1",
"main": "dst/index.js",
"repository": "https://github.com/ArtFXDev/harvest-api.git",
"author": "ArtFX TDs",
"license": "MIT",
"scripts": {
"dev": "nodemon src/index.ts",
"prod": "ts-node src/index.ts",
"lint": "eslint --ext .ts,.tsx .",
"lint:fix": "eslint --fix --ext .ts,.tsx .",
"prettify": "prettier --check .",
"prettify:write": "prettier --write .",
"tsc": "tsc",
"tsc:watch": "tsc --watch",
"start:migrate:prod": "prisma migrate deploy && yarn prod"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^8.8.0",
"nodemon": "^2.0.15",
"prettier": "2.5.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
},
"dependencies": {
"@prisma/client": "^3.8.1",
"axios": "^0.25.0",
"cors": "^2.8.5",
"dotenv": "^14.2.0",
"express": "^4.17.2",
"prisma": "^3.8.1"
}
}