-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 2.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
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
{
"name": "big-browser",
"version": "1.0.0",
"description": "Big Browser is watching you",
"author": "Simon Oulevay <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/MediaComem/big-browser.git"
},
"type": "module",
"scripts": {
"build": "npm run build:frontend && npm run build:backend && copyfiles -u 2 \"./frontend/dist/**/*\" ./dist/public/",
"build:backend": "npm run --workspace backend build",
"build:frontend": "npm run --workspace frontend build",
"check": "npm run format && npm run lint && npm test",
"check:write": "npm run format:write && npm run lint:write",
"format": "prettier --check .",
"format:write": "prettier --write .",
"lint": "eslint --max-warnings 0",
"lint:write": "eslint --max-warnings 0",
"start": "concurrently \"npm run start:backend\" \"npm run start:frontend\"",
"start:backend": "npm run --workspace backend start",
"start:frontend": "npm run --workspace frontend start",
"start:prod": "npm run --workspace backend start:prod",
"test": "npm run test:e2e",
"test:e2e": "playwright test"
},
"workspaces": [
"backend",
"frontend"
],
"devDependencies": {
"@eslint/compat": "^1.1.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.5.0",
"@playwright/test": "^1.44.1",
"@types/node": "^20.14.7",
"@vue/eslint-config-typescript": "^13.0.0",
"concurrently": "^8.2.2",
"copyfiles": "^2.4.1",
"eslint": "^9.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-promise": "^6.2.0",
"eslint-plugin-sonarjs": "^1.0.3",
"eslint-plugin-unicorn": "^54.0.0",
"eslint-plugin-vue": "^9.26.0",
"globals": "^15.6.0",
"prettier": "^3.3.2",
"typescript": "^5.4.5",
"typescript-eslint": "^8.0.0-alpha.30"
},
"overrides": {
"@vue/eslint-config-typescript": {
"eslint": "$eslint"
},
"eslint-plugin-import": {
"eslint": "$eslint"
}
},
"engines": {
"node": ">= 22.0.0 < 23.0.0",
"npm": ">= 7"
}
}