generated from brckd/ts-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.06 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@bricked/fc-template",
"private": false,
"description": "A fc-template for my projects.",
"keywords": [
"fc-template"
],
"homepage": "https://github.com/brckd/fc-template#readme",
"bugs": {
"url": "https://github.com/brckd/fc-template/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brckd/fc-template.git"
},
"license": "MIT",
"author": "Bricked",
"scripts": {
"build": "npx tsup",
"format": "npx sort-package-json && npx prettier --write . && npx eslint --fix --no-error-on-unmatched-pattern .",
"prepare": "npx husky install",
"watch": "npx tsup --watch"
},
"commitlint": {
"extends": "@commitlint/config-conventional"
},
"lint-staged": {
"!(*.ts|package.json)": "npx prettier --ignore-unknown --write",
"*.ts": [
"npx prettier --write",
"npx eslint --fix"
],
"package.json": [
"npx sort-package-json",
"npx prettier --write"
]
},
"prettier": "@bricked/prettier-config",
"eslintConfig": {
"extends": "@bricked"
},
"release": {
"dryRun": true,
"extends": "@bricked/semantic-release-config"
},
"devDependencies": {
"@bricked/eslint-config": "^1.0.0",
"@bricked/prettier-config": "^1.0.0",
"@bricked/semantic-release-config": "^1.1.0",
"@bricked/ts-config": "^1.2.3",
"@commitlint/config-conventional": "^17.6.5",
"@parcel/transformer-typescript-types": "^2.8.3",
"@types/core-js": "^2.5.5",
"@types/fancade-editor": "^1.12.1",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"commitlint": "^17.6.5",
"esbuild-plugin-polyfill-node": "^0.2.0",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"prettier": "^2.8.8",
"process": "^0.11.10",
"sort-package-json": "^2.4.1",
"tsup": "^6.7.0",
"typescript": "^5.0.4"
},
"optionalDependencies": {
"core-js": "^3.30.2"
},
"publishConfig": {
"access": "public"
}
}