-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.29 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
{
"name": "learning-jest-assertions",
"version": "1.0.0",
"author": "Paul Beynon <[email protected]> (https://github.com/teamradhq)",
"homepage": "https://github.com/teamradhq/doc-driven-dev#readme",
"license": "ISC",
"description": "Custom Jest Assertions",
"main": "index.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/teamradhq/template-typescript-node.git"
},
"engines": {
"node": ">=18.0.0 <19.0.0",
"npm": ">=8.0.0 <9.0.0"
},
"bugs": {
"url": "https://github.com/teamradhq/doc-driven-dev/issues"
},
"devDependencies": {
"@babel/preset-env": "^7.19.0",
"@babel/preset-typescript": "^7.18.6",
"@types/eslint": "^8.4.6",
"@types/jest": "^29.0.0",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"dotenv": "^16.0.2",
"eslint": "8.22.0",
"eslint-plugin-jest": "^27.0.2",
"jest": "^29.0.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.8.3"
},
"scripts": {
"go": "ts-node -r tsconfig-paths/register --files index.ts",
"lint": "eslint ./src --fix --config ./eslint.config.js",
"test": "jest --config jest.config.ts"
},
"dependencies": {
"babel-plugin-module-resolver": "^5.0.0",
"dayjs": "^1.11.7",
"supertest": "^6.3.3",
"uuid": "^9.0.0"
}
}