-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·64 lines (64 loc) · 1.68 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
{
"name": "opendeck-ui",
"description": "Configuration utility for OpenDeck MIDI platform",
"main": "main.js",
"version": "0.1.0",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"engines": {
"node": ">=10.16.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wyrdcode/opendeck-ui.git"
},
"scripts": {
"dev": "vite --port 3002",
"build": "vite build",
"format": "prettier --config .prettierrc --write --parser typescript \"src/**/*.ts\"",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"start": "electron ."
},
"dependencies": {
"@tailwindcss/ui": "^0.5.0",
"@vue/eslint-config-typescript": "^5.1.0",
"body-scroll-lock": "^3.0.3",
"file-saver": "^2.0.2",
"lodash-es": "^4.17.15",
"marked": "^1.1.1",
"semver": "^7.3.2",
"tailwindcss": "^1.7.3",
"vue": "^3.0.0",
"vue-router": "^4.0.0-beta.7",
"webmidi": "^2.5.1"
},
"devDependencies": {
"@types/file-saver": "^2.0.1",
"@types/lodash-es": "^4.17.3",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"@vue/compiler-sfc": "^3.0.0",
"@vue/eslint-config-prettier": "^6.0.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-prettier-vue": "^2.1.0",
"eslint-plugin-vue": "^7.0.0-beta.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.0.5",
"typescript": "^3.9.3",
"vite": "^1.0.0-rc.3",
"vue-eslint-parser": "^7.1.0"
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.ts": [
"prettier --parser=typescript --write"
]
}
}