This repository has been archived by the owner on Dec 2, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
156 lines (156 loc) · 5.48 KB
/
package.json
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{
"name": "ssr-sample",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "jest",
"type-check": "tsc --noEmit",
"start": "nodemon ./src/server/index.ts",
"start:prod": "cross-env NODE_ENV=production node ./dist/server/server/index.js",
"start:serverless": "cross-env NODE_ENV=production netlify-lambda serve ./dist/server/functions",
"start:storybook": "start-storybook -p 6006",
"build": "npm run rm:dist && run-p build:client build:server",
"build:server": "cross-env NODE_ENV=production BABEL_ENV=node babel ./src -d ./dist/server --extensions '.ts,.tsx'",
"build:client": "cross-env NODE_ENV=production webpack --config webpack.client.config.js",
"build:storybook": "build-storybook",
"now-build": "npm run build && mv dist public",
"deploy:storybook": "npm run build:storybook && storybook-to-ghpages",
"benchmark": "autocannon http://localhost:8080 -c100",
"benckmark:docker": "clinic docker -- npm run start:prod",
"benchmark:flame": "NODE_ENV=production clinic flame -- node ./dist/server/server/index.js",
"rm:dist": "rimraf dist",
"rm:benchmark": "clinic clean",
"lint": "eslint . --cache --ext .js,.ts,.tsx",
"fmt": "prettier --loglevel warn --write \"**/*.{js,ts,tsx,md,json,css}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/hiroppy/ssr-sample.git"
},
"author": "hiroppy <[email protected]> (https://hiroppy.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/hiroppy/ssr-sample/issues"
},
"homepage": "https://github.com/hiroppy/ssr-sample#readme",
"devDependencies": {
"@apollo/react-testing": "3.1.4",
"@babel/cli": "7.8.4",
"@babel/core": "7.8.7",
"@babel/node": "7.8.7",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-proposal-object-rest-spread": "7.8.3",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/preset-env": "7.8.7",
"@babel/preset-react": "7.8.3",
"@babel/preset-typescript": "7.8.3",
"@loadable/babel-plugin": "5.12.0",
"@loadable/webpack-plugin": "5.12.0",
"@storybook/addon-knobs": "5.3.18",
"@storybook/addon-storyshots": "5.3.18",
"@storybook/addon-viewport": "5.3.18",
"@storybook/cli": "5.3.18",
"@storybook/react": "5.3.18",
"@storybook/storybook-deployer": "2.8.5",
"@testing-library/react": "10.0.2",
"@testing-library/react-hooks": "3.2.1",
"@types/body-parser": "1.19.0",
"@types/compression": "1.7.0",
"@types/dotenv": "8.2.0",
"@types/express": "4.17.4",
"@types/graphql": "14.5.0",
"@types/helmet": "0.0.45",
"@types/jest": "25.1.5",
"@types/loadable__component": "5.10.0",
"@types/loadable__server": "5.9.1",
"@types/nanoid": "2.1.0",
"@types/nock": "11.1.0",
"@types/node": "12.12.34",
"@types/node-fetch": "2.5.5",
"@types/react": "16.9.32",
"@types/react-dom": "16.9.6",
"@types/react-helmet": "5.0.15",
"@types/react-redux": "7.1.7",
"@types/react-router-dom": "5.1.3",
"@types/redux-mock-store": "1.0.2",
"@types/storybook__addon-storyshots": "5.1.2",
"@types/storybook__react": "4.0.2",
"@types/styled-components": "4.4.3",
"@types/supertest": "2.0.8",
"@types/ua-parser-js": "0.7.33",
"@types/webpack-env": "1.15.1",
"@typescript-eslint/eslint-plugin": "2.24.0",
"@typescript-eslint/parser": "2.24.0",
"autocannon": "4.6.0",
"babel-jest": "25.1.0",
"babel-loader": "8.0.6",
"babel-plugin-macros": "2.8.0",
"case-sensitive-paths-webpack-plugin": "2.3.0",
"clinic": "5.0.1",
"cross-env": "7.0.2",
"dotenv-webpack": "1.7.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.1",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "7.18.3",
"eslint-plugin-react-hooks": "3.0.0",
"fork-ts-checker-webpack-plugin": "4.0.5",
"husky": "4.2.3",
"jest": "25.1.0",
"lint-staged": "10.0.10",
"node-mocks-http": "1.8.1",
"nodemon": "2.0.2",
"npm-run-all": "4.1.5",
"prettier": "2.0.4",
"react-test-renderer": "16.12.0",
"redux-devtools-extension": "2.13.8",
"redux-mock-store": "1.5.4",
"redux-saga-test-plan": "4.0.0-rc.3",
"require-context.macro": "1.2.2",
"rimraf": "3.0.2",
"robotstxt-webpack-plugin": "7.0.0",
"supertest": "4.0.2",
"typescript": "3.8.3",
"webpack": "4.41.6",
"webpack-bundle-analyzer": "3.6.1",
"webpack-cli": "3.3.11",
"webpack-dev-middleware": "3.7.2",
"webpack-hot-middleware": "2.25.0",
"webpack-manifest-plugin": "2.2.0",
"webpack-merge": "4.2.2",
"webpack-pwa-manifest": "4.2.0",
"workbox-webpack-plugin": "5.0.0"
},
"dependencies": {
"@loadable/component": "5.12.0",
"@loadable/server": "5.12.0",
"apollo-boost": "0.4.7",
"apollo-link-schema": "1.2.4",
"apollo-server-express": "2.10.1",
"body-parser": "1.19.0",
"compression": "1.7.4",
"core-js": "3.6.4",
"cross-fetch": "3.0.4",
"dotenv": "8.2.0",
"express": "4.17.1",
"graphql": "14.6.0",
"graphql-query-complexity": "0.4.1",
"graphql-tools": "4.0.7",
"helmet": "3.21.3",
"history": "4.10.1",
"nanoid": "2.1.11",
"raw.macro": "0.3.0",
"react": "16.12.0",
"react-apollo": "3.1.4",
"react-dom": "16.12.0",
"react-helmet": "5.2.1",
"react-markdown": "4.3.1",
"react-redux": "7.2.0",
"react-router": "5.1.2",
"react-router-dom": "5.1.2",
"redux": "4.0.5",
"redux-saga": "1.1.3",
"styled-components": "4.4.1",
"ua-parser-js": "0.7.21"
}
}