generated from gravity-ui/package-example
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.75 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
{
"name": "@gravity-ui/onboarding",
"version": "1.0.4",
"description": "",
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist",
"dist/plugins"
],
"repository": {
"type": "git",
"url": "git+https://github.com/gravity-ui/onboarding.git"
},
"bugs": {
"url": "https://github.com/gravity-ui/onboarding/issues"
},
"homepage": "https://github.com/gravity-ui/onboarding#readme",
"scripts": {
"prepare": "husky install",
"lint:js": "eslint --ext .js,.jsx,.ts,.tsx .",
"lint": "run-p lint:*",
"typecheck": "tsc --noEmit",
"test": "jest && npm run size",
"test-watch": "jest --watchAll",
"build": "tsc",
"size": "size-limit",
"prepublishOnly": "npm run build",
"force-release": "echo 43"
},
"dependencies": {
"dayjs": "^1.11.11"
},
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@gravity-ui/eslint-config": "^1.0.0",
"@gravity-ui/prettier-config": "^1.0.0",
"@gravity-ui/tsconfig": "^1.0.0",
"@size-limit/esbuild-why": "^8.2.6",
"@size-limit/preset-small-lib": "^8.2.6",
"@types/jest": "^29.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"eslint": "^8.0.0",
"husky": "^8.0.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.6.1",
"nano-staged": "^0.6.0",
"npm-run-all": "^4.0.0",
"prettier": "^2.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"size-limit": "^8.2.6",
"ts-jest": "^29.0.0",
"typescript": "^4.0.0"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"nano-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix --quiet"
],
"*.md": [
"prettier --write"
]
}
}