This repository was archived by the owner on Dec 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.92 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "fullstack-typescript",
"version": "1.0.0",
"main": "index.tsx",
"author": "Marcelo Cardoso",
"license": "MIT",
"scripts": {
"build": "rimraf dist && webpack --config webpack.config.js && tsc --p tsconfig.server.json",
"client": "webpack-dev-server --progress",
"client:wait": "wait-on tcp:8080 && yarn run client",
"start:postgres": "docker run --name fullstack_typescript_postgres -d -p 5432:5432 -e POSTGRES_PASSWORD=postgres postgres:11",
"stop:postgres": "docker stop fullstack_typescript_postgres",
"gen:client": "wait-on tcp:${SERVER_PORT:-8080} && graphql-codegen --config codegen-client.yml",
"gen:server": "wait-on tcp:${SERVER_PORT:-8080} && graphql-codegen --config codegen-server.yml",
"gen": "npm run gen:server && npm run gen:client",
"server": "nodemon",
"start": "cross-env NODE_ENV=development concurrently \"yarn run server\" \"yarn run client:wait\"",
"test-client-watch": "jest --coverage --watch",
"test-client": "jest --coverage --colors",
"test-wait": "wait-on tcp:8080 && yarn test",
"test-alone": "cross-env NODE_ENV=development TCP=8080 concurrently --kill-others --success first \"yarn run server\" \"yarn run test-wait\"",
"upgd": "yarn upgrade-interactive",
"launch": "cross-env NODE_ENV=production node ./dist/server/index.js"
},
"devDependencies": {
"@graphql-codegen/cli": "^1.17.8",
"@graphql-codegen/typescript": "^1.17.9",
"@graphql-codegen/typescript-operations": "^1.17.8",
"@graphql-codegen/typescript-react-apollo": "^2.0.6",
"@graphql-codegen/typescript-resolvers": "^1.17.9",
"@testing-library/jest-dom": "^4.1.0",
"@testing-library/react": "^9.1.4",
"@types/apollo-upload-client": "^8.1.1",
"@types/connect-redis": "^0.0.11",
"@types/enzyme": "^3.9.0",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/enzyme-to-json": "^1.5.3",
"@types/express": "^4.16.1",
"@types/ioredis": "^4.0.10",
"@types/jest": "^24.0.11",
"@types/node": "^12.7.5",
"@types/react": "^16.8.4",
"@types/react-dom": "^16.8.2",
"@types/react-router": "^5.0.5",
"@types/react-router-dom": "^4.3.1",
"concurrently": "^4.1.0",
"cross-env": "^6.0.0",
"css-loader": "^3.2.0",
"cypress": "^3.3.2",
"file-loader": "^4.2.0",
"graphql-codegen-typescript-client": "^0.18.2",
"graphql-codegen-typescript-common": "^0.18.2",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.5.0",
"jest-transform-stub": "^2.0.0",
"node-sass": "^4.13.1",
"nodemon": "^1.18.10",
"react-hot-loader": "^4.7.1",
"rimraf": "^3.0.0",
"sass-loader": "^8.0.0",
"source-map-loader": "^0.2.4",
"speed-measure-webpack-plugin": "^1.3.1",
"style-loader": "^1.0.0",
"ts-jest": "^24.0.0",
"ts-loader": "^6.1.2",
"ts-node": "^8.0.2",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"tslint-react": "^4.1.0",
"typescript": "^3.3.3333",
"uglifyjs-webpack-plugin": "^2.1.2",
"wait-on": "^3.2.0",
"webapp-webpack-plugin": "^2.7.1",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.0"
},
"dependencies": {
"@apollo/client": "^3.1.4",
"@hot-loader/react-dom": "^16.9.0",
"apollo-cache-inmemory": "^1.6.3",
"apollo-client": "^2.6.4",
"apollo-link-error": "^1.1.12",
"apollo-link-http": "^1.5.16",
"apollo-server-express": "^2.14.2",
"apollo-upload-client": "^11.0.0",
"body-parser": "^1.19.0",
"connect-redis": "^4.0.2",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^14.5.7",
"ioredis": "^4.14.1",
"mobx": "^5.13.0",
"mobx-react": "^6.1.3",
"pg": "^7.12.1",
"react": "^16.9.0",
"react-apollo": "^3.1.1",
"react-dom": "^16.9.0",
"react-router-dom": "^5.0.1",
"reflect-metadata": "^0.1.13",
"tslint": "^5.20.0",
"typeorm": "^0.2.25"
}
}