-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 3.07 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
{
"name": "@nixjs23n6/baseui",
"description": "A React Component library with completely unstyled, fully accessible UI components.",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"keywords": [
"react",
"react-ui",
"components",
"react-components",
"react-library"
],
"homepage": "https://github.com/nixjs/base-ui#readme",
"author": {
"url": "https://github.com/nixjs",
"name": "nghinv"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nixjs/base-ui.git"
},
"scripts": {
"clean": "lerna clean --yes",
"bootstrap": "lerna bootstrap --hoist",
"publish": "yarn lerna publish --no-verify-access --ignore @nixjs23n6/baseui-website",
"test": "lerna run test",
"lint": "lerna run lint",
"build": "lerna run build --include-dependencies --stream --ignore @nixjs23n6/baseui-website",
"format:check": "lerna run format:check",
"storybook:build": "lerna run storybook:build",
"prepare": "is-ci || husky install",
"postinstall": "lerna run postinstall",
"new-version": "lerna version --no-git-tag-version",
"pre-publish": "run-s new-version reset commit-version",
"npm-publish:experimental": "lerna exec -- npm publish --access public --tag experimental",
"npm-publish:canary": "lerna exec -- npm publish --access public --tag canary",
"publish:experimental": "run-s pre-publish npm-publish:experimental",
"publish:canary": "run-s pre-publish npm-publish:canary"
},
"devDependencies": {
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/eslint": "^8.4.5",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/node": "^18.6.3",
"@types/prettier": "^2.6.4",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/react-transition-group": "^4.4.5",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"babel-plugin-styled-components": "^2.0.7",
"classnames": "^2.3.1",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.7.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"husky": "^8.0.0",
"is-ci": "^3.0.1",
"lerna": "^5.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"react-transition-group": "^4.4.5",
"rimraf": "^3.0.2",
"typescript": "^4.7.4"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">= 14"
},
"bugs": {
"url": "https://github.com/nixjs/base-ui/issues"
},
"version": "0.0.0",
"dependencies": {
"nx": "^14.5.4"
}
}