-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.2 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.2 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
{
"name": "typescript-back-template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "npx jest -i",
"build": "npx tsc --outDir dist",
"start": "node dist/src/server.js",
"postinstall": "npm run build",
"dev": "npx nodemon --watch \"src/**\" --ext \"ts,json\" --exec \"ts-node src/server.ts\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/faker": "^5.5.9",
"@types/jest": "^26.0.24",
"@types/joi": "^17.2.3",
"@types/node": "^16.3.3",
"@types/pg": "^8.6.1",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"eslint": "^8.4.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"jest": "^27.0.6",
"nodemon": "^2.0.12",
"supertest": "^6.1.3",
"ts-jest": "^27.0.3",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"dependencies": {
"cors": "^2.8.5",
"dayjs": "^1.10.7",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"faker": "^5.5.3",
"joi": "^17.5.0",
"pg": "^8.6.0"
}
}