-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.66 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
{
"name": "invenfinder-web",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"postinstall": "run-p install:* && husky",
"install:frontend": "cd ./frontend && npm install",
"dev": "run-p dev:*",
"dev:frontend": "cd ./frontend && npm run dev",
"dev:backend": "cd ./backend && deno task dev",
"build": "run-p build:*",
"build:frontend": "cd ./frontend && npm run build",
"build:backend": "cd ./backend && deno task build",
"preview": "cd ./frontend && npm run preview",
"start": "cd ./backend && deno task start",
"lint:frontend": "cd ./frontend && npm run lint",
"lint:backend": "cd ./backend && deno task lint",
"lint:common": "eslint \"./common/{*,**/*}.ts\" --max-warnings=0 && prettier --check ./common",
"lint": "run-p lint:*",
"fmt:frontend": "cd ./frontend && npm run fmt",
"fmt:backend": "cd ./backend && deno task fmt",
"fmt:common": "eslint \"./common/{*,**/*}.ts\" --fix && prettier -w ./common",
"fmt": "run-p fmt:*",
"precommit": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MStefan99/InvenFinder-web.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MStefan99/InvenFinder-web/issues"
},
"homepage": "https://github.com/MStefan99/InvenFinder-web#readme",
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.2",
"globals": "^15.14.0",
"husky": "^9.1.7",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2"
}
}