-
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) · 804 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 804 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": "ledserver",
"version": "1.0.0",
"description": "This repo is split into a client side and server side. The client side consists of a react frontend. The server side consists of a Node express backend.",
"scripts": {
"dev": "concurrently \"npm run dev-server\" \"npm run dev-client\"",
"dev-server": "nodemon server/server.ts",
"dev-client": "cd client && npm start",
"build": "npm run build-server && npm run build-client",
"build-server": "cd server && npm run build",
"build-client": "cd client && npm run build",
"start": "node server/build/server.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^17.3.1"
},
"devDependencies": {
"concurrently": "^9.2.1",
"nodemon": "^3.1.11",
"ts-node": "^10.9.2"
}
}