-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
81 lines (81 loc) · 2.1 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "next-orders",
"version": "0.0.0",
"private": true,
"packageManager": "[email protected]",
"description": "Modern e-commerce self-hosted platform: clients will be happy to order delicious food!",
"author": "Nick Kosarev <[email protected]>",
"license": "MIT",
"homepage": "https://nextorders.space",
"repository": {
"type": "git",
"url": "git+https://github.com/next-orders/food.git"
},
"bugs": {
"url": "https://github.com/next-orders/food/issues"
},
"keywords": [
"ecommerce",
"ecommerce-platform",
"multilingual",
"shop",
"self-hosted",
"website"
],
"engines": {
"node": ">=22.13.1",
"pnpm": ">=10.2.0"
},
"scripts": {
"release": "pnpm -r --filter \"./apps/**\" --workspace-concurrency=1 exec -- npx --no-install semantic-release -e semantic-release-monorepo",
"build": "pnpm -r run build",
"dev": "pnpm -r run dev",
"dev:food": "pnpm --filter @next-orders/food dev",
"dev:local": "docker compose -f ./docker/docker-compose.yml up -d",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"clean": "pnpm -r run clean",
"clean:modules": "pnpm -r run clean:modules && rm -rf node_modules",
"typecheck": "pnpm -r run typecheck",
"prepare": "husky"
},
"devDependencies": {
"@antfu/eslint-config": "^4.1.1",
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@semantic-release/exec": "^7.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^22.13.1",
"dotenv-cli": "^8.0.0",
"eslint": "^9.19.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"nuxt": "^3.15.4",
"semantic-release": "^24.2.1",
"semantic-release-monorepo": "^8.0.2",
"typescript": "^5.7.3",
"vite": "^6.1.0",
"vue-tsc": "^2.2.0"
},
"pnpm": {
"supportedArchitectures": {
"os": [
"linux",
"darwin",
"current"
],
"cpu": [
"x64",
"arm64"
]
}
},
"lint-staged": {
"*.ts": "pnpm run lint"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}