-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
35 lines (35 loc) · 1002 Bytes
/
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
{
"name": "invoice-app",
"version": "1.0.0",
"description": "a full-stack invoicing application",
"main": "index.js",
"private": true,
"scripts": {
"client:dev": "npm run dev --prefix client",
"client:build": "npm run build --prefix client",
"client:start": "npm run start --prefix client",
"server:dev": "npm run start:dev --prefix server",
"server:prod": "npm run start:prod --prefix server",
"server:build": "npm run build --prefix server",
"dev": "concurrently \"npm run client:dev\" \"npm run server:dev\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/funmilolajire/invoice-app.git"
},
"keywords": [
"invoice-app",
"fullstack",
"nextjs",
"nestjs"
],
"author": "Funmilola O.",
"license": "MIT",
"bugs": {
"url": "https://github.com/funmilolajire/invoice-app/issues"
},
"homepage": "https://github.com/funmilolajire/invoice-app#readme",
"dependencies": {
"concurrently": "^6.0.2"
}
}