-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.51 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@tdreyno/pretty-please",
"version": "1.3.0",
"main": "build/index.js",
"typings": "build/index.d.ts",
"repository": "https://github.com/tdreyno/pretty-please.git",
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint -c .eslintrc.js --ext .ts src",
"build": "pika build && yarn compress",
"compress": "terser pkg/dist-web/index.js -o pkg/dist-web/index.min.js --source-map --mangle --compress passes=2 --toplevel --mangle-props regex=/_$/ && gzip-size pkg/dist-web/index.min.js",
"test": "jest --runInBand",
"version": "yarn run build",
"coverage": "jest --runInBand --coverage --coverageDirectory '../coverage'",
"commit": "git-cz",
"semantic-release": "semantic-release",
"prepare": "husky install"
},
"engines": {
"node": ">=14"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-ts-standard-pkg",
{
"exclude": [
"__tests__/**/*"
]
}
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-build-web"
]
]
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint -c .eslintrc.js --ext .ts src --fix",
"prettier --write"
],
"*.{css,md}": [
"prettier --write"
]
},
"volta": {
"node": "14.17.0",
"yarn": "1.22.4"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.0.3",
"@commitlint/prompt": "^19.3.0",
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.9.2",
"@pika/plugin-build-web": "^0.9.2",
"@pika/plugin-ts-standard-pkg": "^0.9.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.0.5",
"@types/jest": "^27.4.1",
"@types/react": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"gzip-size-cli": "^5.0.0",
"husky": "^8.0.3",
"jest": "^27.5.1",
"lint-staged": "^15.2.2",
"prettier": "^3.1.0",
"semantic-release": "^21.1.1",
"terser": "^5.28.1",
"ts-jest": "^27.1.4",
"ts-toolbelt": "^9.6.0",
"typescript": "^4.9.5"
},
"dependencies": {},
"peerDependencies": {
"react": ">=16.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}