-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.07 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
{
"name": "protube",
"version": "1.0.0",
"description": "ProTube is an application used by Study Association Proto to play videos and music from YouTube.",
"scripts": {
"postinstall": "concurrently \"npm:install-*\"",
"install-client": "cd client && npm install",
"install-server": "cd server && npm install",
"dev": "concurrently \"npm:dev-*\"",
"dev-client": "cd client && npm run dev",
"dev-server": "cd server && npm run watch",
"build": "cd client && npm run build",
"lint:check": "eslint .",
"lint:write": "eslint . --fix",
"format:check": "prettier .",
"format:write": "prettier --write ."
},
"devDependencies": {
"concurrently": "^7.6.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.28.0"
},
"dependencies": {
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.0",
"vite-plugin-eslint": "^1.8.1"
}
}