{ "name": "opt-cc", "version": "1.0.0", "license": "MIT", "private": true, "scripts": { "start": "npm run deploy-static-prod && NODE_ENV=production node ./api/server.js", "dev": "npm run deploy-static && nodemon ./api/server.js", "deploy-static": "cd ./static && ng build && ln -s ../api/resource/ ../public/resource", "deploy-static-prod": "cd ./static && ng build --env=prod && ln -s ../api/resource/ ../public/resource", "postinstall": "npm install --prefix ./static && npm install --prefix ./api", "mongodb": "mongod --dbpath ./mongodb-data", "test": "npm test --prefix ./api", "e2e": "npm run deploy-static && concurrently \"npm run e2e --prefix ./api\" \"$(npm bin)/wait-on -t 60000 http://localhost:3001/ && npm run e2e --prefix ./static\" --success first --kill-others", "start-e2e": "npm run deploy-static && npm run e2e --prefix ./api", "test-e2e": "npm run e2e --prefix ./static" }, "devDependencies": { "concurrently": "^3.4.0", "wait-on": "^2.0.2" } }