2017-05-10 11:04:06 +02:00
{
"name" : "opt-cc" ,
2018-10-02 09:58:07 +02:00
"version" : "1.8.3" ,
2017-10-28 12:58:40 +02:00
"author" : "Florian Hartwich <hardi@noarch.de>" ,
2017-05-10 11:04:06 +02:00
"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" ,
2018-07-02 22:17:16 +02:00
"pre-deploy-clean" : "rm -f ./public/resource" ,
2018-07-02 20:23:47 +02:00
"deploy-static" : "npm run pre-deploy-clean && npm run build --prefix=static && npm run deploy-static:link-resource && npm run deploy-static:api-docs" ,
2018-07-02 22:18:37 +02:00
"deploy-static:prod" : "npm run pre-deploy-clean && npm run build:prod --prefix=static && npm run deploy-static:link-resource && npm run deploy-static:api-docs" ,
2018-03-12 16:28:24 +01:00
"deploy-static:link-resource" : "ln -s ../api/resource/ public/resource" ,
2018-03-19 20:32:59 +01:00
"deploy-static:api-docs" : "npm run api:docs --prefix=api" ,
2017-05-11 15:12:17 +02:00
"postinstall" : "npm install --prefix ./static && npm install --prefix ./api" ,
2018-03-12 10:44:42 +01:00
"lint" : "npm run lint --prefix=api && npm run lint --prefix=static" ,
2017-05-21 03:59:27 +02:00
"test" : "npm test --prefix ./api" ,
2018-03-19 20:32:59 +01:00
"e2e" : "npm run deploy-static && concurrently \"npm run start-test --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 start-test --prefix ./api" ,
2018-03-24 19:04:22 +01:00
"test-e2e" : "npm run e2e --prefix ./static" ,
"test-api" : "npm run api:test-docs --prefix ./api"
2017-05-21 03:59:27 +02:00
} ,
2017-10-10 19:03:52 +02:00
"dependencies" : { } ,
2017-05-21 03:59:27 +02:00
"devDependencies" : {
2017-05-23 12:51:03 +02:00
"concurrently" : "^3.4.0" ,
"wait-on" : "^2.0.2"
2017-05-10 11:04:06 +02:00
}
}