-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 991 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
37
38
39
40
41
42
43
{
"name": "node-js-getting-started",
"version": "0.3.0",
"description": "A sample Node.js app using Express 4",
"engines": {
"node": "20.x"
},
"main": "index.js",
"scripts": {
"start": "ts-node src/index.js",
"build": "tsc --AllowJs --checkJs ",
"serve": "node dist/index.js",
"postbuild": "chmod +x bin/postbuild.sh && ./bin/postbuild.sh"
},
"dependencies": {
"@cemalgnlts/mailjs": "^3.0.1",
"axios": "^1.6.8",
"boosted": "^5.3.3",
"ejs": "^3.1.9",
"express": "^4.19.2",
"moment": "^2.30.1",
"path": "^0.12.7",
"request": "^2.88.2",
"superagent": "^8.1.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.12.7",
"tape": "^5.7.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"repository": {
"type": "git",
"url": "https://github.com/heroku/node-js-getting-started"
},
"keywords": [
"node",
"heroku",
"express"
],
"license": "MIT"
}