-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 752 Bytes
/
package.json
File metadata and controls
20 lines (20 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "e-commerce-fullstack",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"preinstall": "cd ./backend && npm install && cd .. && cd ./frontend && npm install",
"lint": "cd ./backend && npm run lint && cd .. && cd ./frontend && npm run lint",
"dev": "concurrently \"cd backend && npm run dev\" \"cd frontend && npm run dev\"",
"test": "cd ./backend && npm run test && cd .. && cd ./frontend && npm run test",
"build": "cd ./backend && npm run build && cd .. && cd ./frontend && npm run build",
"docker:build": "cd ./backend && npm run docker:build"
},
"keywords": [],
"author": "Anthony Gress",
"license": "GPL-3.0-only",
"devDependencies": {
"concurrently": "^9.0.1"
}
}