-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.14 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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "NODE_PATH=./src ts-node --transpile-only src/index.ts",
"dev": "NODE_PATH=./src ts-node-dev --respawn --transpile-only src/index.ts",
"syncDb": "NODE_PATH=./src ts-node --transpile-only src/scripts/resyncDatabase.ts",
"prettier": "prettier --write \"./**/*\"",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx"
},
"author": "Lars Raschke",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.1.3",
"express": "^4.18.2",
"helmet": "^7.0.0",
"joi": "^17.9.2",
"morgan": "^1.10.0",
"pg": "^8.11.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.31.1"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/morgan": "^1.9.4",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.4"
}
}