-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.33 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": "acronym-api",
"version": "1.0.0",
"description": "A simple API to get the meaning of acronyms",
"main": "dist/server.js",
"scripts": {
"build": "rimraf dist && npx tsc",
"prestart": "npm run build",
"start": "node dist/server.js",
"preserve": "npm run build",
"dev": "concurrently \"npx tsc -w\" \"nodemon dist/server.js\"",
"migrate": "npx prisma migrate dev --name init",
"generate": "npx prisma generate",
"format": " npx prettier . --write",
"lint": "npx eslint . --ext .ts",
"lint:fix": "npx eslint . --ext .ts --fix",
"push": "git push origin main"
},
"keywords": [],
"license": "MIT",
"dependencies": {
"@prisma/client": "^5.3.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"prisma": "^5.3.1",
"rimraf": "^5.0.1"
},
"devDependencies": {
"@types/cors": "^2.8.14",
"@types/express": "^4.17.17",
"@types/node": "^20.6.2",
"concurrently": "^8.2.1",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-prettier": "^5.0.1",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"author": {
"name": "itzAmka",
"url": "https://amka.dev",
"twitter": "https://twitter.com/itzAmka",
"github": "itzAmka"
}
}