-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.37 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": "@curveball/starter",
"version": "0.0.1",
"description": "Minimal curveball starter template",
"main": "dist/index.js",
"scripts": {
"prepublishOnly": "tsc",
"build": "tsc",
"start": "node dist/index.js",
"start:watch": "npx tsc-watch --onSuccess 'node dist/index.js'",
"watch": "tsc --watch",
"lint": "eslint --quiet 'src/*.ts'",
"fix": "eslint --quiet 'src/**/*.ts' --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/curveball/new-package.git"
},
"files": [
"package.json",
"README.md",
"dist",
"LICENSE"
],
"dependencies": {
"@curveball/accesslog": "^0.4.0",
"@curveball/bodyparser": "^0.6.1",
"@curveball/controller": "^0.5.0",
"@curveball/core": "^0.21.0",
"@curveball/links": "^0.3.0",
"@curveball/problem": "^0.5.0",
"@curveball/router": "^0.5.0"
},
"author": "Evert Pot (https://evertpot.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/curveball/starter/issues"
},
"homepage": "https://github.com/curveball/starter#readme",
"devDependencies": {
"@types/node": "^16.11.56",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint": "^8.3.0",
"tsc-watch": "^6.0.0",
"typescript": "^4.1.2"
},
"types": "dist/",
"nyc": {
"extension": [
".ts"
]
}
}