-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
29 lines (29 loc) · 1.24 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": "typemeup",
"version": "1.0.0",
"description": "An alghorithmically enhanced typing website",
"main": "index.js",
"scripts": {
"dev:backend_websockets": "cd backend_websockets && go run .",
"install": "npm run install:frontend && npm run install:backend",
"install:frontend": "cd frontend && npm install",
"install:backend": "cd backend && npm install",
"build": "npm run build:frontend && npm run build:backend",
"build:frontend": "cd frontend && npm run build",
"build:backend": "cd backend && npm run build",
"start:frontend": "cd frontend && npm start",
"start:backend": "cd backend && npm start",
"dev:frontend": "cd frontend && npm run dev",
"dev:backend": "cd backend && npm run dev",
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\" \"npm run dev:backend_websockets\"",
"dev_js": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\" ",
"start": "concurrently \"npm run start:frontend\" \"npm run start:backend\"",
"deploy": "npm run build && npm run start",
"check": "cd backend && npm run check && cd .. && cd frontend && npm run check"
},
"devDependencies": {
"concurrently": "^6.2.0"
},
"author": "bskdany",
"license": "ISC"
}