forked from johnpapa/node-hello
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 697 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 697 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
{
"name": "node-hello",
"version": "1.0.0",
"description": "Simple Hello World Node.js app",
"main": "index.js",
"scripts": {
"start": "node index.js",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/khaledyoussef/node-hello.git"
},
"bugs": {
"url": "https://github.com/khaledyoussef/node-hello/issues"
},
"homepage": "https://github.com/khaledyoussef/node-hello#readme",
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.18.2"
},
"devDependencies": {
"eslint": "^9.26.0",
"@eslint/js": "^9.26.0",
"eslint": "^8.40.0"
}
}