-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 1.2 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
{
"name": "@zuplo/api-key-manager",
"version": "2.5.0",
"description": "A React component to manage API keys",
"license": "MIT",
"author": "Zuplo",
"repository": {
"type": "git",
"url": "https://github.com/zuplo/api-key-manager"
},
"scripts": {
"build": "npm run build --workspace packages/react",
"dev": "concurrently \"npm run dev --workspace packages/react\" \"npm run dev --workspace examples/nextjs\"",
"format": "prettier --write .",
"lint": "npm run lint --workspaces",
"release": "npm version minor",
"version": "npm version $npm_package_version --workspaces && git add **/package.json",
"postversion": "git push --tags && git push",
"postinstall": "npx husky install"
},
"workspaces": [
"examples/*",
"packages/*"
],
"devDependencies": {
"concurrently": "^8.2.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^3.0.3",
"typescript": "^5.0.2"
},
"lint-staged": {
"**/*.{ts,json,md,yml,js,css,html}": [
"prettier --write"
]
},
"dependencies": {
"eslint-plugin-import": "^2.28.1"
}
}