-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.29 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
{
"name": "trackerboard-client",
"version": "0.1.0",
"private": true,
"engines": {
"node": "15.14.0",
"npm": "7.7.6"
},
"scripts": {
"serve": "vite",
"lint:script": "eslint --ext .ts,vue --ignore-path .gitignore .",
"lint:markup": "vue-tsc --noEmit",
"storybook": "start-storybook -p 6006",
"preview": "vite preview",
"build": "rm -rf dist && vite build",
"build:storybook": "build-storybook --output-dir dist/storybook",
"build:all": "rm -rf dist && vite build && build-storybook --output-dir dist/storybook",
"start": "node server.js",
"heroku-postbuild": "npm run build:all"
},
"dependencies": {
"@vue-leaflet/vue-leaflet": "^0.6.1",
"click-outside-vue3": "^4.0.1",
"clickout-event": "^1.1.1",
"express": "^4.17.1",
"leaflet": "^1.7.1",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"remixicon": "^2.5.0",
"uuid": "^3.4.0",
"vue": "^3.0.0",
"vue-router": "^4.0.0-0",
"vuex": "^4.0.0-0"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@storybook/addon-actions": "^6.3.4",
"@storybook/addon-essentials": "^6.3.4",
"@storybook/addon-links": "^6.3.4",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/vue3": "^6.3.4",
"@types/leaflet": "^1.7.3",
"@types/lodash": "^4.14.170",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"@vitejs/plugin-vue": "^1.2.4",
"@vue/compiler-sfc": "^3.0.5",
"@vue/eslint-config-typescript": "^7.0.0",
"autoprefixer": "^10.2.6",
"babel-loader": "^8.2.2",
"css-loader": "^3.6.0",
"eslint": "^6.8.0",
"eslint-plugin-vue": "^7.13.0",
"path": "^0.12.7",
"postcss": "^8.3.5",
"postcss-loader": "^4.3.0",
"sass": "^1.35.1",
"sass-loader": "^10.0.2",
"storybook-tailwind-dark-mode": "^1.0.9",
"style-loader": "^1.3.0",
"tailwindcss": "^2.2.4",
"typescript": "~4.1.5",
"vite": "^2.4.1",
"vite-plugin-eslint": "^1.3.0",
"vue-loader": "^16.3.0",
"vue-tsc": "^0.0.24"
}
}