-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 996 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 996 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
35
36
37
{
"name": "node-with-typescript",
"version": "1.0.0",
"description": "\"Understanding and getting my hands dirty with typescript",
"main": "app.js",
"scripts": {
"start": "tsc && node --unhandled-rejections=strict ./dist/app.js",
"debug": "export DEBUG=* && npm run dev",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "tsc && nodemon --unhandled-rejections=strict ./dist/app.js"
},
"keywords": [
"node",
"typescript"
],
"author": "fawas kareem",
"license": "ISC",
"dependencies": {
"argon2": "^0.28.2",
"cors": "^2.8.5",
"debug": "^4.3.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-winston": "^4.1.0",
"shortid": "^2.2.16",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.12",
"@types/shortid": "0.0.29",
"source-map-support": "^0.5.19",
"tslint": "^6.1.3",
"typescript": "^4.3.2"
}
}