-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 952 Bytes
/
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
{
"name": "typescript-express-template",
"version": "1.0.0",
"description": "Template for using typescript with Express in Nodejs. It allows for quick plug and play to start your idea",
"main": "./src/index.js",
"scripts": {
"test": "jest",
"start": "ts-node-dev ./src/index.ts",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EyadAlghamdi/typescript-express-template.git"
},
"author": "Eyad Alghamdi",
"license": "ISC",
"bugs": {
"url": "https://github.com/EyadAlghamdi/typescript-express-template/issues"
},
"homepage": "https://github.com/EyadAlghamdi/typescript-express-template#readme",
"devDependencies": {
"@types/express": "^4.17.9",
"@types/node": "^14.14.13",
"jest": "^26.6.3",
"ts-node-dev": "^1.1.1",
"typescript": "^4.1.3",
"webpack": "^5.10.1"
},
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1"
}
}