forked from viamrobotics/prime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.49 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
{
"name": "@viamrobotics/prime",
"version": "0.1.3",
"license": "Apache-2.0",
"type": "module",
"files": [
"dist"
],
"main": "./dist/prime.umd.js",
"module": "./dist/prime.es.js",
"exports": {
".": {
"import": "./dist/prime.es.js",
"require": "./dist/prime.umd.js"
},
"./prime.css": "./dist/prime.css"
},
"homepage": "http://viamrobotics.github.io/prime",
"repository": "git://github.com/viamrobotics/prime.git",
"scripts": {
"start": "vite --host",
"build": "vite build --mode production",
"postbuild": "node ./scripts/postbuild",
"serve": "vite preview --host",
"check": "svelte-check --tsconfig ./tsconfig.json",
"lint": "eslint --ext .ts,.svelte, ./src/elements",
"test": "npx playwright test",
"test-dev": "npx playwright test --debug",
"storybook": "storybook dev -p 6006",
"storybook-docs": "storybook dev --docs --no-manager-cache",
"build-storybook": "storybook build --docs -o prime"
},
"devDependencies": {
"@floating-ui/dom": "^1.0.12",
"@playwright/test": "^1.29.0",
"@storybook/addon-a11y": "^7.0.0-beta.13",
"@storybook/addon-actions": "^7.0.0-beta.13",
"@storybook/addon-docs": "^7.0.0-beta.13",
"@storybook/addon-essentials": "^7.0.0-beta.13",
"@storybook/addon-interactions": "^7.0.0-beta.13",
"@storybook/addon-links": "^7.0.0-beta.13",
"@storybook/html": "^7.0.0-beta.13",
"@storybook/html-vite": "^7.0.0-beta.13",
"@storybook/testing-library": "^0.0.14-next.1",
"@sveltejs/vite-plugin-svelte": "^2.0.2",
"@tsconfig/svelte": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"classnames": "^2.3.2",
"element-internals-polyfill": "^1.1.17",
"eslint": "^8.30.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-sonarjs": "^0.17.0",
"eslint-plugin-storybook": "^0.6.8",
"eslint-plugin-svelte3": "^4.0.0",
"eslint-plugin-tailwindcss": "^3.7.1",
"eslint-plugin-unicorn": "^45.0.2",
"monaco-editor": "^0.34.1",
"postcss": "^8.4.20",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.0.0-beta.13",
"svelte": "^3.55.0",
"svelte-check": "^2.10.2",
"svelte-preprocess": "^5.0.0",
"tailwindcss": "^3.2.4",
"terser": "^5.16.1",
"tslib": "^2.4.1",
"typescript": "^4.9.4",
"vite": "4.0.2"
}
}