-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 860 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 860 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
31
32
33
34
{
"name": "ts-mastery-",
"version": "1.0.0",
"description": "foo bar",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "tsc",
"start": "node dist/index.js",
"dev": "TS_NODE_FILES=true nodemon --watch 'src/**/*.ts' --exec 'ts-node -P ./tsconfig.json' --log-error src/index.ts",
"format": "prettier --write ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"express-rate-limit": "^7.1.5",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/node": "^20.9.3",
"@types/uuid": "^9.0.7",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"prettier": "^3.2.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
}
}