-
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
17 lines (17 loc) · 611 Bytes
/
package.json
File metadata and controls
17 lines (17 loc) · 611 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"name": "girici-web-proxy",
"version": "1.0.0",
"description": "A web proxy application for unblock websites",
"scripts": {
"build-all": "cd front-end && npm run build && cd .. && cd back-end && npm run build && cd ..",
"start": "cd back-end && node dist/index.js",
"dev": "cd back-end && DEV_MODE=true ts-node-dev ./src/index.ts",
"install-modules": "npm i && cd back-end && npm i && cd .. && cd front-end && npm i",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Halit Sever",
"license": "MIT",
"devDependencies": {
"ts-node-dev": "^2.0.0"
}
}