-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 860 Bytes
/
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
{
"name": "json-server-ui",
"version": "1.0.0",
"description": "json-editor + json-server based editor",
"main": "src/index.js",
"scripts": {
"start": "npm run build && nodemon src/index.js",
"build": "npm run build-index && npm run build-plural",
"build-index": "sed -i -e \"s/\\${URL_SCHEME}/$URL_SCHEME/g; s/\\${FQDN}/$FQDN/g; s/\\${PORT}/$PORT/g\" ./public/index.html",
"build-plural": "sed -i -e \"s/\\${URL_SCHEME}/$URL_SCHEME/g; s/\\${FQDN}/$FQDN/g; s/\\${PORT}/$PORT/g\" ./public/plural.html",
"test": "jest"
},
"keywords": [],
"author": {
"name": "Junho Lee",
"email": "[email protected]",
"url": "https://buddypia.com"
},
"license": "MIT",
"dependencies": {
"cors": "^2.8.5",
"json-server": "^0.17.0"
},
"devDependencies": {
"dotenv": "^10.0.0",
"nodemon": "^2.0.15"
}
}