-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.29 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.29 KB
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
{
"name": "direct-cold-mail-server",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start:dev": "nodemon ./src/server.ts",
"clean": "rimraf build/*",
"tsc": "tsc",
"build": "npm-run-all clean tsc",
"start": "node build/server.js",
"production": "npm run build && npm run start",
"lint": "eslint ./src",
"lint:fix": "eslint --fix .",
"db:migrate:latest": "ts-node ./src/db/migrate.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/pg": "^8.10.9",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"kysely": "^0.26.3",
"nodemon": "^2.0.20",
"path": "^0.12.7",
"pg": "^8.11.3"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.13",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.16",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"neon-cli": "^0.10.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}