-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 883 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 883 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
25
26
27
28
29
30
31
32
33
{
"name": "mcmotdapi",
"version": "0.0.1",
"private": true,
"description": "a local motd api",
"keywords": [
"motd",
"mc"
],
"homepage": "https://github.com/Sbaoor-fly/mcmotdapi#readme",
"bugs": {
"url": "https://github.com/Sbaoor-fly/mcmotdapi/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sbaoor-fly/mcmotdapi.git"
},
"license": "MIT",
"author": "Sbaoor",
"type": "module",
"main": "./backend/server.js",
"scripts": {
"start": "node backend/server.js",
"build:docker": "cd front && npm run build:docker",
"build:publish": "cd front && npm run build:publish",
"dev": "concurrently \"npm:dev:front\" \"npm:start:backend\"",
"dev:front": "npm run dev --prefix front",
"start:backend": "npm run start --prefix backend"
},
"devDependencies": {
"concurrently": "^9.2.0"
}
}