-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 841 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 841 Bytes
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": "fark",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"install": "concurrently --kill-others-on-fail \"cd ./client && npm install\" \"cd ./server && npm install\" \"cd ./redirection-server && npm install\"",
"start-client": "cd ./client && npm start",
"start-server": "cd ./server && npm start",
"start-redirection-server":"cd ./redirection-server && npm start",
"dev": "concurrently --kill-others-on-fail \"npm run start-server\" \"npm run start-client\" \"npm run start-redirection-server\"",
"start": "npm run start-server",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^5.3.0",
"eslint-plugin-react": "^7.21.4"
},
"dependencies": {
"crypto": "^1.0.1"
}
}