-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 756 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "flow-web-ml",
"version": "1.0.0",
"description": "The Node React Startup Structure",
"main": "server/app.js",
"scripts": {
"rimraf": "./node_modules/rimraf/bin.js",
"start:prod": "cd server && npm run start",
"start:dev": "concurrently \"npm run server\" \"npm run client\" -k",
"client": "cd client && npm run start",
"build:client": "cd client && npm run build",
"install:client": "cd client && npm install && ",
"install:server": "cd server && npm install",
"build:server": "cd server && rimraf ./build && tsc"
},
"author": "Burak Celik",
"license": "MIT",
"devDependencies": {
"concurrently": "^4.1.2"
},
"dependencies": {}
}