-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 967 Bytes
/
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
{
"name": "node",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "tsc",
"start": "nodemon --watch ./src -e ts --exec \"yarn ts-node ./src/index.ts\"",
"prettier": "prettier -w ./src/**/*.ts",
"test": "jest"
},
"dependencies": {
"axios": "^0.21.1",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"express": "~4.16.1",
"hbs": "~4.0.4",
"http-errors": "~1.6.3",
"morgan": "~1.9.1"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"@babel/preset-typescript": "^7.13.0",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.12",
"@types/faker": "^5.5.6",
"@types/http-errors": "^1.8.0",
"@types/jest": "^26.0.23",
"@types/morgan": "^1.9.2",
"babel-jest": "^27.0.2",
"faker": "^5.5.3",
"jest": "^27.0.4",
"nodemon": "^2.0.7",
"prettier": "^2.3.1",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
}
}