forked from lightning-js/ui-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.35 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
{
"name": "ui-components",
"version": "0.3.0",
"author": "",
"license": "Apache-2.0",
"private": true,
"main": "index.js",
"type": "module",
"types": "dist/types.d.ts",
"scripts": {
"start": "npm run solid:storybook",
"lint": "pnpm eslint . --ext .js,.ts,.jsx,.tsx",
"lint:fix": "pnpm eslint . --ext .js,.ts,.jsx,.tsx --fix",
"reset": "rm -rf node_modules && rm -rf src/packages/solid/node_modules && rm -rf src/sandbox/node_modules && pnpm store prune",
"solid:build-storybook": "pnpm --filter @lightningjs/solid-ui build",
"solid:sandbox": "pnpm --filter solid-js-sandbox start",
"solid:storybook": "pnpm --filter @lightningjs/solid-ui start",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@lightningjs/renderer": "^0.4.1",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.4.2",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-solid": "^0.13.0",
"prettier": "^3.0.3"
},
"devDependencies": {
"@lightningjs/ui-components-theme-base": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"typescript": "^4.9.5",
"vite": "^4.4.11",
"vite-bundle-visualizer": "^0.10.0",
"vite-plugin-cross-origin-isolation": "^0.1.6",
"vite-plugin-solid": "^2.7.1"
}
}