-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 722 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 722 Bytes
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
{
"name": "api",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"test": "jest",
"dev": "tsnd --respawn -r tsconfig-paths/register --files src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/preset-env": "^7.20.2",
"babel-jest": "^29.4.3",
"babel-plugin-module-resolver": "^5.0.0",
"express": "^4.18.2",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/plugin-proposal-decorators": "^7.20.13",
"@babel/plugin-syntax-decorators": "^7.19.0",
"@babel/preset-typescript": "^7.18.6",
"@jest/globals": "^29.4.3",
"jest": "^29.4.3",
"tsconfig-paths": "^4.1.2"
}
}