-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.33 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
{
"name": "node-js-getting-started",
"version": "0.3.0",
"description": "A sample Node.js app using Express 4",
"engines": {
"node": "18.x || 16.x"
},
"main": "meadowlark.ts",
"scripts": {
"build": "npx tsc",
"start": "npm run build && node dist/meadowlark.js",
"test": "jest",
"lint": "eslint meadowlark.ts lib/ js/",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/meadowlark.js\""
},
"dependencies": {
"body-parser": "^1.20.2",
"ejs": "^3.1.5",
"express": "^4.15.2",
"express-handlebars": "^7.0.7",
"multiparty": "^4.2.3",
"pg": "^8.11.1"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.5.3",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"concurrently": "^8.2.0",
"eslint": "^8.43.0",
"got": "^11.3.0",
"jest": "^29.5.0",
"nodemon": "^3.0.1",
"portfinder": "^1.0.32",
"prettier": "3.0.0",
"puppeteer": "^20.7.1",
"tape": "^4.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.3"
},
"repository": {
"type": "git",
"url": "https://github.com/heroku/node-js-getting-started"
},
"keywords": [
"node",
"heroku",
"express"
],
"license": "MIT"
}