24 lines
1.1 KiB
JSON
24 lines
1.1 KiB
JSON
{
|
|
"name": "opt-cc",
|
|
"version": "1.6.0",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"scripts": {
|
|
"start": "npm run deploy-static-prod && npm start --prefix ./api",
|
|
"dev": "npm run deploy-static && npm run dev --prefix ./api",
|
|
"deploy-static": "cd ./static && $(npm bin)/ng build && ln -s ../api/resource/ ../public/resource",
|
|
"deploy-static-prod": "cd ./static && $(npm bin)/ng build --prod --aot && ln -s ../api/resource/ ../public/resource",
|
|
"postinstall": "npm install --prefix ./static && npm install --prefix ./api",
|
|
"mongodb": "mkdir -p mongodb-data && mongod --dbpath ./mongodb-data",
|
|
"test": "npm test --prefix ./api",
|
|
"e2e": "npm run deploy-static && concurrently \"npm run e2e --prefix ./api\" \"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"
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"concurrently": "^3.4.0",
|
|
"wait-on": "^2.0.2"
|
|
}
|
|
}
|