-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.32 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
{
"name": "sparc-dashboard-beta",
"version": "0.3.0",
"author": "Sam Kraft (https://Sparc.Science)",
"private": false,
"type": "module",
"main": "./dist/index.js",
"license": "Apache-2.0",
"files": [
"dist",
"src/stores",
"src/devComponents",
"tailwind"
],
"scripts": {
"dev": "vite & yarn tailwindcss -i ./src/assets/base.css -o ./dist/output.css --watch",
"build": "tsc & vite build; yarn tailwindcss -i ./src/assets/base.css -o ./dist/output.css",
"preview": "vite preview",
"build-only": "vite build; yarn tailwindcss -i ./src/assets/base.css -o ./dist/output.css",
"release:beta": "npm publish --tag beta",
"release:minor": "npm version minor; npm publish",
"release:patch": "npm version patch; npm publish",
"type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "vitest"
},
"dependencies": {
"@abi-software/flatmapvuer": "1.6.2-beta.12",
"@tsconfig/node21": "^21.0.1",
"axios": "^1.6.7",
"chart.js": "^4.4.2",
"gridstack": "^9.5.0",
"mitt": "^3.0.1",
"pinia": "^2.1.7",
"sass": "^1.69.5",
"sparc-design-system-components-2": "0.0.26",
"storybook": "^7.5.3",
"vue": "^3.5.10",
"vue-chartjs": "^5.3.1"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.3.3",
"@storybook/addon-essentials": "^7.5.3",
"@storybook/addon-interactions": "^7.5.3",
"@storybook/addon-links": "^7.5.3",
"@storybook/blocks": "^7.5.3",
"@storybook/testing-library": "^0.2.2",
"@storybook/vue3": "^7.5.3",
"@storybook/vue3-vite": "^7.5.3",
"@types/node": "^20.11.27",
"@vitejs/plugin-vue": "^4.4.0",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/tsconfig": "^0.4.0",
"eslint": "^8.49.0",
"eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-vue": "^9.17.0",
"npm-run-all2": "^6.1.1",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.3.5",
"typescript": "~5.2.0",
"vite": "^4.4.11",
"vitest": "^1.1.1",
"vue-tsc": "^1.8.19"
}
}