-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 850 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 850 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
{
"name": "learning_pm2",
"version": "1.0.0",
"description": "Let's try to learn PM2",
"main": "index.js",
"scripts": {
"build": "yarn tsc",
"start": "yarn tsc && ts-node dist/app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/doublems/learning_pm2.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/doublems/learning_pm2/issues"
},
"homepage": "https://github.com/doublems/learning_pm2#readme",
"dependencies": {
"express": "^4.17.1",
"pm2": "^5.1.2",
"typescript": "^4.5.2",
"yarn": "2.4.3"
},
"packageManager": "yarn@3.1.1",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^16.11.11",
"ts-node": "^10.4.0",
"tsc-watch": "^4.5.0"
}
}