-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
23 lines (23 loc) · 1011 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
{
"name": "chefsarena",
"version": "1.0.0",
"description": "Chef's Arena is a website I made for CodeChef backend developer hiring hackathon",
"main": "index.js",
"scripts": {
"test-client": "cd frontend && npm run test",
"test-server": "cd backend && vendor/bin/phpunit",
"test": "npm run test-server && npm run test-client",
"build": "rm -rfv deployment/*;npm run build --prefix frontend;cp -rfv frontend/build/* deployment;cp -rfv backend/* deployment;cp -rfv backend/.htaccess deployment;",
"client": "cd frontend && REACT_APP_URL=http://localhost:8000 npm start",
"server": "cd backend && php -S localhost:8000",
"install_client": "cd frontend && npm install",
"install_server": "cd backend && composer install",
"install_all": "npm run install_client;npm run install_server;",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"author": "Vishal Pratap Singh",
"license": "ISC",
"devDependencies": {
"concurrently": "^5.2.0"
}
}