generated from fers4t/react-package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.55 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
{
"name": "kgid",
"description": "Unique uuid generator. Just fast and unique.",
"version": "1.0.1",
"author": "oceaners-dev",
"license": "ISC",
"keywords": [],
"files": [
"dist"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"repository": "fers4t/kgid",
"homepage": "https://github.com/fers4t",
"bugs": "https://github.com/fers4t/kgid/issues/",
"scripts": {
"build": "rm -rf ./dist && pnpm run build:esm && pnpm run build:cjs && rollup -c",
"build:esm": "tsc",
"build:cjs": "tsc --module CommonJS --outDir dist/cjs",
"dev": "concurrently \"pnpm build\" \"pnpm storybook\"",
"watch": "concurrently \"pnpm watch:esm\" \"pnpm watch:cjs\"",
"watch:esm": "tsc --watch",
"watch:cjs": "tsc --module CommonJS --outDir dist/cjs --watch",
"watch:rollup": "rollup -c -w",
"commit": "cz",
"release": "pnpm release-it"
},
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@commitlint/cli": "17.3.0",
"@commitlint/config-conventional": "17.3.0",
"@rollup/plugin-terser": "^0.3.0",
"@ryansonshine/commitizen": "4.2.8",
"@ryansonshine/cz-conventional-changelog": "3.3.4",
"@types/jest": "29.2.3",
"@types/node": "18.11.9",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"concurrently": "7.4.0",
"eslint": "8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-typescript-sort-keys": "2.1.0",
"eslint-plugin-unused-imports": "2.0.0",
"prettier": "^2.7.1",
"ts-jest": "29.0.3",
"typescript": "4.8.4"
},
"peerDependencies": {
"typescript": ">=4"
},
"dependencies": {
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-typescript": "^11.0.0",
"lint-staged": "^13.1.0",
"release-it": "^15.5.1",
"rollup": "^3.9.1",
"tslib": "^2.4.1"
},
"config": {
"commitizen": {
"path": "./node_modules/@ryansonshine/cz-conventional-changelog"
}
},
"lint-staged": {
"./{src,__tests__}/**/*.{ts,js,jsx,tsx}": [
"eslint --ignore-path .gitignore --fix"
]
},
"release-it": {
"git": {
"commitMessage": "chore(release): v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": true,
"access": "public",
"publishPath": "--registry https://registry.npmjs.org"
}
}
}