-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.18 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
{
"name": "template-typescript-node",
"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": "TypeScript Template for Node JS",
"main": "src/index.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/teamradhq/template-typescript-node.git"
},
"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 ./src/index.ts",
"lint": "eslint ./src --fix --config ./eslint.config.js",
"test": "jest --config jest.config.ts"
},
"dependencies": {
"babel-plugin-module-resolver": "^4.1.0",
"uuid": "^9.0.0"
}
}