File size: 722 Bytes
4f163ba |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
{
"name": "transcreation-sandbox",
"version": "1.0.0",
"description": "A web-based tool for postgraduate translation students to practice transcreation and intercultural mediation",
"main": "server/index.js",
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run client\"",
"server": "cd server && npm run dev",
"client": "cd client && npm start",
"build": "cd client && npm run build",
"install-all": "npm install && cd server && npm install && cd ../client && npm install"
},
"keywords": ["translation", "transcreation", "cultural-mediation", "education"],
"author": "Transcreation Sandbox Team",
"license": "MIT",
"devDependencies": {
"concurrently": "^8.2.2"
}
} |