-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
29 lines (29 loc) · 1.04 KB
/
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
{
"name": "portfolioshop",
"version": "1.0.0",
"description": "This is a open source portfolio management system, built on Azure function with Node and ReactJS",
"main": "index.js",
"scripts": {
"dev-install": "npm install && cd app && npm install && cd ../ && cd api && npm install && cd ../",
"start-api": "cd api && npm start",
"start-app": "cd app && npm start",
"start-dev": "concurrently \"npm:start-app\" \"npm:start-api\"",
"start": "swa start http://localhost:3000 --api-location http://localhost:7071 --open --run \"npm run start-dev\" --devserver-timeout=600000",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Portfolio-Shop/portfolioshop.git"
},
"keywords": [],
"author": "portfolioshop",
"license": "GPL",
"bugs": {
"url": "https://github.com/Portfolio-Shop/portfolioshop/issues"
},
"homepage": "https://github.com/Portfolio-Shop/portfolioshop#readme",
"devDependencies": {
"@azure/static-web-apps-cli": "^1.0.3",
"concurrently": "^7.6.0"
}
}