opt-cc/package.json

23 lines
1.0 KiB
JSON
Raw Normal View History

2017-05-10 11:04:06 +02:00
{
"name": "opt-cc",
2017-07-09 11:32:20 +02:00
"version": "1.1.0",
2017-05-10 11:04:06 +02:00
"license": "MIT",
"private": true,
"scripts": {
2017-05-23 13:26:26 +02:00
"start": "npm run deploy-static-prod && npm start --prefix ./api",
"dev": "npm run deploy-static && npm run dev --prefix ./api",
"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",
2017-07-08 13:14:59 +02:00
"mongodb": "mkdir -p mongodb-data && mongod --dbpath ./mongodb-data",
"test": "npm test --prefix ./api",
2017-05-27 23:35:31 +02:00
"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"
},
"devDependencies": {
"concurrently": "^3.4.0",
"wait-on": "^2.0.2"
2017-05-10 11:04:06 +02:00
}
}