forked from AlexSciFier/neonlink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.03 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
30
31
{
"name": "neonlink",
"version": "1.1.1",
"description": "Simple self-hosted bookmark service.",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"reset-password": "cd ./server && node reset-password.js",
"dev-init": "npm install && cd ./frontend && npm install && cd ../server && npm install",
"dev-client": "cd ./frontend && npm run start",
"dev-server": "cd ./server && npm run dev",
"dev-start": "concurrently --kill-others \"npm run dev-server\" \"npm run dev-client\"",
"build-client": "cd ./frontend && npm run build",
"start": "npm run build-client && cp -r ./frontend/build/* ./server/public/ && cd ./server && npm run start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlexSciFier/bookmark-app.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/AlexSciFier/bookmark-app/issues"
},
"homepage": "https://github.com/AlexSciFier/bookmark-app#readme",
"devDependencies": {
"concurrently": "^8.2.0"
}
}