generated from linder3hs/ts-tdd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 990 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
39
40
41
{
"name": "tdd-skeleton-ts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "commonjs",
"scripts": {
"lint": "eslint . --ext .js",
"test": "jest",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cors": "2.8.5",
"dotenv": "16.0.3",
"express": "4.18.2",
"prettier": "2.8.3"
},
"devDependencies": {
"@babel/core": "7.20.12",
"@babel/preset-env": "7.20.2",
"@babel/preset-typescript": "7.18.6",
"@jest/globals": "29.4.1",
"@types/cors": "2.8.13",
"@types/express": "4.17.16",
"@types/jest": "29.4.0",
"@types/node": "18.11.18",
"@typescript-eslint/eslint-plugin": "5.49.0",
"@typescript-eslint/parser": "5.49.0",
"babel-jest": "29.4.1",
"eslint": "8.33.0",
"eslint-config-prettier": "8.6.0",
"husky": "^8.0.0",
"jest": "29.4.1",
"ts-jest": "29.0.5",
"ts-node": "10.9.1",
"typescript": "4.9.5"
}
}