-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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
{
"name": "ts-docker-nodemon-lint-jest-template",
"version": "1.0.0",
"type": "commonjs",
"description": "",
"main": "build/src/server.js",
"scripts": {
"build": "tsc",
"dev": "nodemon src/server.ts",
"start": "npm run dev",
"test": "jest",
"lint": "eslint .",
"fix": "eslint . --fix"
},
"keywords": [],
"author": "Nik Chinuk",
"license": "MIT",
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/compression": "^1.7.2",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-unicorn": "^40.1.0",
"jest": "^27.4.7",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
},
"dependencies": {
"compression": "^1.7.4",
"express": "^4.17.2"
}
}