This repository has been archived by the owner on Jun 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.67 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
55
56
57
58
{
"name": "boilerplate",
"description": "Another TypeScript boilerplate.",
"dependencies": {
"@oclif/command": "^1.8.0",
"got": "^11.8.2",
"oclif": "^1.18.1"
},
"bin": {
"boilerplate": "./bin/run"
},
"devDependencies": {
"@oclif/dev-cli": "^1.26.0",
"@rushstack/eslint-config": "^2.4.4",
"@rushstack/eslint-plugin": "^0.8.3",
"@rushstack/eslint-plugin-packlets": "^0.3.3",
"@types/jest": "^27.0.2",
"eslint": "^7",
"jest": "^27.3.1",
"madge": "^5.0.1",
"nodemon": "^2.0.14",
"prettier": "^2.4.1",
"ts-jest": "^27.0.7",
"typescript": "4.2.4"
},
"scripts": {
"build": "tsc",
"test": "jest",
"todo-ci": "leasot -x --reporter markdown 'src/**/*.ts' 'src/**/*.js' > TODO.md",
"update-types": "npx openapi-typescript https://kvgjjrssxfvqlvbbghbx.supabase.co/rest/v1/?apikey= --output src/packlets/utils/supabase-types.ts",
"ts": "node -r esbuild-register",
"lint": "eslint ./src",
"detect-circular-dependencies": "yarn madge --circular --extensions ts ./src",
"postpack": "rm -f oclif.manifest.json",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
"watch:lint": "nodemon --exec yarn lint --config ./nodemon.json",
"watch:build": "nodemon --exec yarn build --config ./nodemon.json"
},
"engines": {
"node": "14"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "boilerplate",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-warn-if-update-available",
"@oclif/plugin-not-found"
]
}
}