-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 849 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "speed-reader",
"version": "1.0.0",
"description": "Minimal speed reader, from a static website made using React and Node",
"main": "index.js",
"scripts": {
"build": "cd frontend && npm run build",
"installserver": "cd server && npm install && cd ..",
"installfrontend": "cd frontend && npm install && cd ..",
"server": "cd backend && node server",
"viteapp": "cd frontend && npm run dev",
"frontend": "start chrome http://localhost:5173/ && npm-run-all -p server viteapp",
"app": "start chrome http://localhost:3000/ && npm run server",
"electron": "cd electron && npm start",
"electronBuildFrontend": "cd electron && cd frontend && npm run build",
"electronBuild": "cd electron && npm run build"
},
"keywords": [
"reactjs"
],
"author": "Silas Sequeira",
"license": "MIT"
}