-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
90 lines (90 loc) · 2.73 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
{
"name": "limeplay",
"version": "1.0.0",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/winoffrg/limeplay.git"
},
"author": "Rohan Gupta <[email protected]>",
"license": "MIT",
"scripts": {
"limeplay:dev": "cd packages/limetree && pnpm run dev",
"lint": "eslint .",
"docgen": "esno ./scripts/docgen.ts",
"build:package": "cd packages && turbo run build",
"build:fast": "turbo run build:fast",
"clean": "pnpm -r --parallel exec rimraf dist .turbo *.log",
"changelog:latest": "tsx scripts/changelog.ts --latest",
"changelog:commit": "git add . && git commit -am 'docs: add changelog' && git push",
"changelog:format": "prettier --write .changelog",
"version": "changeset version",
"release": "changeset publish",
"version:dev": "changeset version --snapshot dev",
"release:dev": "changeset publish --tag dev",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@changesets/get-release-plan": "^3.0.16",
"@changesets/types": "^5.2.1",
"@next/eslint-plugin-next": "^13.3.1",
"@octokit/rest": "^19.0.7",
"@storybook/addon-a11y": "^7.0.6",
"@storybook/addon-storysource": "^7.0.6",
"@types/fs-extra": "^11.0.1",
"@types/lodash": "^4.14.192",
"@types/node": "^18.15.11",
"@types/react": "^18.0.31",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"chalk": "^5.2.0",
"clean-package": "^2.2.0",
"edit-json-file": "^1.7.0",
"eslint": "^8.37.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-tsdoc": "^0.2.17",
"esno": "^0.16.3",
"fs-extra": "^11.1.0",
"prettier": "^2.8.7",
"react-docgen-typescript": "^2.2.2",
"rimraf": "^3.0.2",
"tsup": "^6.7.0",
"tsx": "^3.12.6",
"turbo": "^1.8.8",
"typescript": "^5.0.2"
},
"tsdoc": {
"tags": {
"memberof": {
"allowMultiple": false,
"syntax": "<category> <namepath>"
}
}
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.4",
"@storybook/addon-essentials": "7.0.6",
"@storybook/addon-links": "7.0.6",
"@storybook/blocks": "7.0.6",
"@storybook/builder-vite": "^7.0.6",
"@storybook/react": "7.0.6",
"@storybook/react-webpack5": "7.0.6",
"eslint-plugin-storybook": "^0.6.11",
"prop-types": "15.8.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"storybook": "7.0.6"
}
}