-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.35 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.35 KB
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
{
"name": "react-elf",
"version": "1.0.0",
"description": "react component",
"private": true,
"workspaces": [
"apps/**/*",
"packages/**/*"
],
"scripts": {
"build": "turbo run build",
"npm-check": "turbo run npm-check --parallel",
"docs:dev": "turbo run docs:dev --parallel",
"docs:build": "turbo run docs:build",
"lib:build": "turbo run lib:build",
"preview-storybook": "pnpm run docs:build && serve docs",
"test": "echo \"Error: no test specified\" && exit 1",
"changeset": "changeset",
"version": "changeset version",
"prerelease": "pnpm run lib:build",
"release": "pnpm publish -r --no-git-checks --access public",
"lint": "turbo run lint",
"build:storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elf-framework/react-elf.git"
},
"keywords": [
"react",
"elf",
"component"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/elf-framework/react-elf/issues"
},
"homepage": "https://github.com/elf-framework/react-elf#readme",
"devDependencies": {
"@changesets/changelog-git": "^0.1.14",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"changeset": "^0.2.6",
"eslint": "^8.44.0",
"turbo": "^1.10.7"
},
"engines": {
"node": ">=18.0.0"
}
}