This repository was archived by the owner on Feb 16, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 93
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (34 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (34 loc) · 1.35 KB
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
34
35
36
{
"name": "pckd",
"version": "1.0.0",
"description": "<div id=\"top\">Pckd - Not just a URL Shortener. Open Source, fully customizable</div>",
"main": "server/src/index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"dev-server": "cd server && npm run dev",
"dev-client": "cd client && npm start",
"build-client": "cd client && npm run build",
"server": "cd server && nodemon server.js",
"client": "cd client && npm run start",
"server-install": "cd server && cp -i .env.example .env && npm install",
"client-install": "cd client && cp -i .env.example .env && npm install --force --legacy-deps",
"init": "npm i -D nodemon concurrently && concurrently \"npm run server-install\" \"npm run client-install\"",
"db-init": "cd server && npm run db-init",
"install": "echo 'Use either one of `npm run client-install`, or `npm run server-install`'",
"dev": "export NODE_ENV=development && concurrently \"npm run dev-server\" \"npm run dev-client\"",
"start": "export NODE_ENV=production && cd server && npm start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Just-Moh-it/pckd.git"
},
"keywords": [],
"author": "Mohit Yadav",
"license": "MIT",
"bugs": {
"url": "https://github.com/Just-Moh-it/pckd/issues"
},
"homepage": "https://github.com/Just-Moh-it/pckd#top"
}