-
-
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) · 776 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 776 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": "node-starter",
"version": "1.0.23",
"description": "Starter repo for Node.js project",
"bin": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"lint": "eslint ./src/",
"build": "ncc build src/index.js -o dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BetaHuhn/node-starter.git"
},
"bugs": {
"url": "https://github.com/BetaHuhn/node-starter/issues"
},
"homepage": "https://github.com/BetaHuhn/node-starter#readme",
"author": "Maximilian Schiller <schiller@mxis.ch>",
"license": "MIT",
"keywords": [
"nodejs"
],
"dependencies": {
"dotenv": "^8.5.1"
},
"devDependencies": {
"@betahuhn/config": "^1.2.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^7.32.0"
}
}