qpa-client/package.json

66 lines
2.2 KiB
JSON
Raw Permalink Normal View History

2018-03-30 16:12:42 +02:00
{
2019-08-03 15:11:21 +02:00
"name": "client",
"version": "0.0.1",
"main": "index.ts",
"license": "private",
2018-10-05 21:27:50 +02:00
"private": true,
2019-05-18 08:58:46 +02:00
"scripts": {
2019-08-06 10:05:35 +02:00
"build": "yarn client-build; yarn ssr-build",
2019-10-04 17:21:47 +02:00
"client-build": "(cd packages/qpa; yarn build)",
"ssr-build": "(cd packages/qpa-ssr; yarn build)",
2019-10-18 12:46:56 +02:00
"ssr-start": "(cd packages/qpa-ssr; yarn start)",
2019-10-22 10:06:25 +02:00
"ssr-server": "(cd packages/qpa-ssr; yarn server)",
2019-10-07 17:06:08 +02:00
"start": "(cd packages/qpa; yarn start)",
2019-10-04 11:31:10 +02:00
"ssr": "API_URL=http://alpha.quepasaalpujarra.com/graphql ts-node packages/qpa-ssr/index.ts",
2019-10-06 11:30:10 +02:00
"release": "docker build -t eu.gcr.io/qpa-staging-237606/web:$TAG .; docker push eu.gcr.io/qpa-staging-237606/web:$TAG",
"codegen": "gql2ts ./schema.graphql -o ./@types/graphql.d.ts"
2019-05-18 08:58:46 +02:00
},
2019-08-16 10:30:29 +02:00
"workspaces": [
"packages/*"
],
"peerDependencies": {
"serialize-javascript": "^2.1.1"
},
2019-05-18 08:58:46 +02:00
"dependencies": {
2019-08-03 15:11:21 +02:00
"@types/mustache": "^0.8.32",
2019-10-15 17:55:32 +02:00
"@types/react-router-dom": "^5.1.0",
2019-08-03 15:11:21 +02:00
"jest": "^24.8.0",
"jest-cli": "^24.8.0",
"nodemon": "^1.19.1",
2019-10-06 11:30:10 +02:00
"qpa": "0.0.1",
2019-08-16 10:30:29 +02:00
"qpa-components": "0.0.1",
2019-10-06 11:30:10 +02:00
"qpa-message-center": "0.0.1"
2019-08-03 15:11:21 +02:00
},
"devDependencies": {
2019-11-22 13:15:04 +01:00
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.7.0",
2019-10-15 17:55:32 +02:00
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-export-default-from": "^7.2.0",
"@babel/plugin-syntax-jsx": "^7.2.0",
2019-11-22 13:15:04 +01:00
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"@babel/preset-typescript": "^7.7.2",
"@emotion/babel-preset-css-prop": "^10.0.23",
"@types/express": "^4.17.2",
"@types/jest": "^24.0.23",
"@types/node": "^12.12.11",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.4",
"@types/react-loadable": "^5.5.2",
"@types/react-router": "^5.1.3",
"@types/webpack-dev-server": "^3.4.0",
"apollo-link-context": "^1.0.19",
2019-10-06 11:30:10 +02:00
"gql2ts": "^1.10.1",
2019-11-15 15:26:50 +01:00
"prettier": "^1.19.1",
2019-11-22 13:15:04 +01:00
"ts-jest": "^24.1.0",
"ts-node": "^8.5.2",
"tslint": "^5.20.1",
2019-11-15 15:26:50 +01:00
"tslint-config-prettier": "^1.18.0",
2019-11-08 12:19:26 +01:00
"typescript": "^3.7.2",
2019-11-22 13:15:04 +01:00
"yarn": "^1.19.1"
2019-05-18 08:58:46 +02:00
}
}