-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 833 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 833 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
{
"name": "notes",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"client": "cd client && npm i && npm run build",
"server": "cd server/Notes && ./mvnw package && java -jar target/Notes-0.0.1-SNAPSHOT.jar",
"start": "concurrently \"npm run server\" \"npm run client\"",
"dev-client": "cd client && npm start",
"dev-server": "cd server/Notes && ./mvnw spring-boot:run",
"dev": "concurrently \"npm run dev-server\" \"npm run dev-client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/vivekkakadiya/Notes-using-Spring-Boot.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/vivekkakadiya/Notes-using-Spring-Boot/issues"
},
"homepage": "https://github.com/vivekkakadiya/Notes-using-Spring-Boot#readme"
}