-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.25 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
{
"name": "basic-backend-architecture",
"version": "1.0.0",
"description": "",
"main": "src/main.ts",
"scripts": {
"build-ts": "tsc",
"build": "npm run build-ts && npm run copy-static-assets",
"copy-static-assets": "ts-node copy_static_assets.ts",
"serve": "node dist/main.js",
"start": "npm run serve",
"start:dev": "NODE_ENV=dev npm run serve",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "0.21.1",
"body-parser": "1.19.0",
"dotenv": "8.2.0",
"errorhandler": "1.5.1",
"express": "4.17.1",
"http-status-codes": "2.1.4",
"jsonwebtoken": "^8.5.1",
"pg": "^8.6.0",
"typeorm": "^0.2.32",
"winston": "3.3.3"
},
"devDependencies": {
"@types/body-parser": "1.19.0",
"@types/errorhandler": "1.5.0",
"@types/eslint": "7.2.6",
"@types/express": "4.17.11",
"@types/jsonwebtoken": "^8.5.1",
"@types/node": "14.14.25",
"@types/shelljs": "0.8.8",
"@types/winston": "2.4.4",
"@typescript-eslint/eslint-plugin": "4.22.0",
"@typescript-eslint/parser": "4.14.2",
"eslint": "7.19.0",
"shelljs": "0.8.4",
"ts-node": "9.1.1",
"typescript": "4.2.4"
}
}