forked from edrcq/mini-ts-auth-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.08 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.08 KB
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
{
"name": "ts-api",
"version": "1.0.0",
"main": "jest.config.js",
"scripts": {
"start": "node dist/out-tsc/index.js",
"dev": "tsc-alias -p tsconfig.json --watch & tsc-watch --noClear -p \"./tsconfig.json\" --onSuccess \"node dist/index.js\"",
"dev:win": "tsc-watch --noClear -p \"./tsconfig.json\" --onSuccess \"npm run dev:winnext\"",
"dev:winnext": "tsc-alias -p tsconfig.json && node dist/index.js",
"build": "tsc && tsc-alias -p tsconfig.json",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"axios": "^1.5.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"mongodb": "^6.1.0"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.4",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.18",
"@types/jest": "^29.5.4",
"@types/node": "^20.8.2",
"jest": "^29.6.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.8",
"tsc-watch": "^6.0.4",
"tsconfig-paths-jest": "^0.0.1"
}
}