-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 890 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
34
35
36
{
"name": "deploy-demo",
"version": "1.0.0",
"description": "Deploy example",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "nodemon",
"build": "tsc --build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/get-your-knowledge-here/deploy-demo.git"
},
"keywords": [],
"author": {
"email": "sylvester.das@gmail.com",
"name": "Sylvester Das",
"url": "https://www.sylvesterdas.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/get-your-knowledge-here/deploy-demo/issues"
},
"homepage": "https://github.com/get-your-knowledge-here/deploy-demo#readme",
"dependencies": {
"express": "^4.17.1"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^16.11.7",
"nodemon": "^2.0.15",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
}
}