forked from hivehelsinki/42-api-keychain
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (19 loc) · 746 Bytes
/
package.json
File metadata and controls
19 lines (19 loc) · 746 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "api-keychain",
"version": "1.0.0",
"description": "This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).",
"main": "index.js",
"scripts": {
"dev:front": "cd front && npm run dev",
"dev:back": "cd back && npm run dev",
"install": "concurrently --names \"front,back\" -c \"green,blue\" \"cd front && npm i\" \"cd back && npm i\"",
"dev": "concurrently --names \"front,back\" -c \"green,blue\" \"npm:dev:front\" \"npm:dev:back\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^8.2.0"
}
}