-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 810 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 810 Bytes
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
{
"name": "abxmall-ecommerce",
"version": "0.0.1",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev:api": "cd packages/api && npm run start:dev",
"dev:web": "cd packages/web && npm run dev",
"dev": "concurrently \"npm run dev:api\" \"npm run dev:web\"",
"build": "cd packages/api && npm run build && cd ../frontend && npm run build",
"install:api": "npm install -w packages/api",
"install:web": "npm install -w packages/web"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexdevzz/abxmall-ecommerce.git"
},
"bugs": {
"url": "https://github.com/alexdevzz/abxmall-ecommerce/issues"
},
"homepage": "https://github.com/alexdevzz/abxmall-ecommerce#readme",
"devDependencies": {
"concurrently": "^9.1.2"
}
}