forked from nextui-org/nextui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
133 lines (133 loc) Β· 4.16 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "root",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"engines": {
"node": ">=12.13.0",
"npm": ">=7.9.0",
"yarn": ">=1.12.x"
},
"scripts": {
"dev:docs": "turbo run dev --scope=@nextui-org/docs --no-deps",
"dev:nextui": "turbo run dev --scope=@nextui-org/react --no-deps",
"sb": "turbo run sb --scope=@nextui-org/react-storybook --no-deps",
"start:docs": "turbo run start --scope=@nextui-org/docs --no-deps",
"start:sb": "turbo run start --scope=@nextui-org/react-storybook --no-deps",
"build:docs": "turbo run build --scope=@nextui-org/docs",
"build": "turbo run build",
"build:nextui": "turbo run build --scope=@nextui-org/react --no-deps",
"build:sb": "turbo run build --scope=@nextui-org/react-storybook --no-deps",
"turbo:graph": "yarn build --graph=dependency-graph.png",
"turbo:clean": "rm -rf ./node_modules/.cache/turbo",
"deploy:docs": "yarn workspace @nextui-org/docs deploy",
"deploy:stage-docs": "yarn workspace @nextui-org/docs deploy:stage",
"pre-publish:nextui": "yarn workspace @nextui-org/react pre-publish",
"lint:nextui": "turbo run lint --scope=@nextui-org/react",
"lint:docs": "turbo run lint --scope=@nextui-org/docs",
"lint": "turbo run lint",
"format": "prettier --write 'src/**/*.{ts,tsx,scss,css,json}'",
"prettier": "prettier --write .",
"test:nextui": "turbo run test --scope=@nextui-org/react",
"test-update:nextui": "turbo run test-update --scope=@nextui-org/react",
"test": "yarn test:nextui",
"test:update": "yarn test-update:nextui",
"test:up": "yarn test-update:nextui",
"test:cov": "yarn workspace @nextui-org/react coverage-update",
"coverage": "yarn workspace @nextui-org/react coverage",
"coverage:update": "yarn workspace @nextui-org/react coverage-update",
"coverage:codecov": "yarn workspace @nextui-org/react coverage:codecov",
"cov:co": "yarn coverage:codecov",
"cov:up": "yarn workspace @nextui-org/react coverage-update",
"build:docs-meta": "ts-node scripts/update-index-docs.ts",
"clean": "yarn turbo:clean"
},
"devDependencies": {
"@docusaurus/utils": "2.0.0-beta.3",
"@types/node": "^14.14.41",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.2",
"@types/shelljs": "^0.8.9",
"@types/styled-jsx": "^2.2.8",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"algoliasearch": "^4.10.3",
"dotenv": "^10.0.0",
"eslint": "^7.29.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.2.0",
"eslint-config-react-app": "^6.0.0",
"eslint-config-ts-lambdas": "^1.2.3",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-flowtype": "^5.7.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"graceful-fs": "^4.2.6",
"http-server": "^0.12.3",
"lerna": "^4.0.0",
"markdown-toc": "^1.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"prettier-eslint": "^12.0.0",
"prettier-eslint-cli": "^5.0.1",
"shelljs": "^0.8.4",
"ts-node": "^10.1.0",
"turbo": "^1.0.24",
"typescript": "^4.3.4",
"uuid": "^8.3.2"
},
"dependencies": {
"gray-matter": "^4.0.3"
},
"turbo": {
"baseBranch": "origin/main",
"pipeline": {
"build": {
"dependsOn": [
"^build"
],
"outputs": [
".next/**",
"dist/**",
"lib/**"
]
},
"start": {
"dependsOn": [
"^build"
],
"outputs": []
},
"test": {
"dependsOn": [
"^build"
],
"outputs": []
},
"test-update": {
"dependsOn": [
"^build"
],
"outputs": []
},
"lint": {
"outputs": []
},
"dev": {
"cache": false
},
"sb": {
"cache": false
}
}
}
}