-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 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
38
{
"author": "Daniel Schuster <tanuel.mategi@gmail.com>",
"description": "A reverse engineered NPM registry",
"repository": "https://github.com/Tanuel/baggy",
"homepage": "https://github.com/Tanuel/baggy",
"license": "MIT",
"private": true,
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"lint": "eslint . --ext .ts",
"serve": "nodemon --exec 'ts-node' examples/express-fileserver",
"serve-sqlite": "nodemon --exec 'ts-node' examples/express-sqlite",
"serve-s3": "nodemon --exec 'ts-node' examples/express-s3"
},
"devDependencies": {
"@types/node": "^14.0.1",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"husky": "^4.2.5",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"ts-node": "^8.10.1",
"typescript": "^3.9.2"
},
"workspaces": [
"packages/*",
"examples/*"
],
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}