-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.15 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
{
"name": "@fullstacksjs/tsconfig",
"version": "1.1.0",
"license": "MIT",
"author": "fullstacksJS <[email protected]>",
"description": "FullstacksJS community base tsconfig",
"repository": {
"type": "git",
"url": "git+https://github.com/fullstacksjs/tsconfig.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"files": [
"*.json"
],
"scripts": {
"lint": "eslint . --fix",
"prepublishOnly": "./scripts/createEntries.js && pinst --disable",
"postpublish": "./scripts/removeEntries.js && pinst --enable",
"prepack": "./scripts/createEntries.js && pinst --disable",
"postpack": "./scripts/removeEntries.js && pinst --enable",
"prepare": "husky install"
},
"devDependencies": {
"@fullstacksjs/eslint-config": "9.3.1",
"eslint": "8.40.0",
"husky": "8.0.3",
"jsonc-parser": "3.2.0",
"lint-staged": "13.2.2",
"np": "7.7.0",
"pinst": "3.0.0",
"prettier": "2.8.8",
"typescript": "5.0.4"
},
"peerDependencies": {
"typescript": ">=4"
},
"volta": {
"node": "18.13.0",
"npm": "9.3.1"
},
"np": {
"yolo": true
}
}