-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
24 lines (24 loc) · 1003 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
{
"name": "doppler",
"version": "0.1.1",
"description": "A zero configuration remote monitoring tool designed to be better than nothing",
"scripts": {
"build": "cd backend && rm -rf ./dist && tsc && cd ../frontend && react-scripts build && cp -r ./build ../backend/dist/serve",
"start": "cd backend && node dist/app.js",
"clean": "rm -f release/doppler-* && cd backend && rm -rf node_modules dist && cd ../frontend && rm -rf node_modules build",
"package": "cd backend/dist && pkg app.js --out-path ../../release/ --config ../../package.json && cd ../../release && sh ./rename.sh"
},
"pkg": {
"assets": "backend/dist/serve/**/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EnKrypt/Doppler.git"
},
"author": "EnKrypt",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/EnKrypt/Doppler/issues"
},
"homepage": "https://github.com/EnKrypt/Doppler#readme"
}