-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.69 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
{
"name": "photo-share-service",
"version": "0.0.0",
"private": true,
"description": "A service for easily sharing photos.",
"keywords": [
"photo",
"upload",
"share"
],
"author": {
"name": "Andy Moesch",
"email": "andy@wry.ch",
"url": "https://www.wry.ch/"
},
"homepage": "https://www.wry.ch",
"repository": {
"type": "git",
"url": "https://github.com/wrych/photo_upload_service"
},
"bugs": {
"url": "https://github.com/wrych/photo_upload_service/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/wrych"
},
"scripts": {
"dev": "concurrently \"npm run dev --prefix backend\" \"npm run dev --prefix frontend\"",
"build": "npm run build --prefix frontend && npm run build --prefix backend",
"lint": "eslint . --fix --ignore-path backend/.gitignore --ignore-path frontend/.gitignore",
"format": "prettier --write backend/ frontend/src",
"pack": "npm run build && cd backend && npm pack && cd -",
"clean": "npm run clean --prefix frontend && npm run clean --prefix backend"
},
"license": "Unlicense",
"devDependencies": {
"@eslint/js": "^8.56.0",
"@rushstack/eslint-patch": "^1.10.4",
"@types/eslint__js": "^8.42.3",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"concurrently": "^9.0.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^9.28.0",
"prettier": "^3.3.3",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.0"
},
"dependencies": {}
}