-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.05 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
{
"name": "@hedgehoglab/frontend-tech-test-server",
"version": "0.1.9",
"description": "Temporarily persistent server for the hedgehog lab frontend technical test",
"keywords": [
"hedgehoglab"
],
"homepage": "https://github.com/hedgehoglab-engineering/frontend-tech-test-server",
"license": "MIT",
"author": "Sam Turrell <[email protected]>",
"type": "module",
"main": "dist/index.js",
"bin": {
"hedgehoglab-frontend-tech-test-server": "dist/index.js"
},
"files": [
"./dist"
],
"scripts": {
"build": "rollup -c",
"lint": "eslint .",
"start": "node dist/index.js",
"start:dev": "node src/index.js",
"release": "yarn build && bumpp package.json --commit --push --tag && npm publish --non-interactive --access public --registry=https://registry.npmjs.org/"
},
"dependencies": {
"@faker-js/faker": "^8.2.0",
"h3": "^1.8.2",
"listhen": "^1.5.5",
"rollup": "^4.1.4"
},
"devDependencies": {
"@hedgehoglab/eslint-config": "^0.1.8",
"bumpp": "^9.2.0",
"eslint": "^8.51.0"
}
}