-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
35 lines (35 loc) · 1.11 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
{
"name": "react-server-example-tsx",
"version": "7.0.0",
"description": "Boilerplate for isomorphic web app with React server-side rendering in TypeScript.",
"main": "dist/server.js",
"repository": "styfle/react-server-example-tsx",
"scripts": {
"start": "node dist/server.js",
"vercel-build": "webpack --mode production",
"watch": "webpack --mode development --watch",
"prettier": "prettier \"./src/**/*.ts\" \"./src/**/*.tsx\" --write",
"test": "tsc --outDir . --sourceMap false && tape tests/**/*.js",
"release": "npm version patch && git push --follow-tags && npm publish"
},
"license": "MIT",
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@types/node": "^14.14.31",
"@types/react": "^17.0.8",
"@types/react-dom": "^17.0.5",
"@types/tape": "^4.13.0",
"@types/webpack": "^5.28.0",
"prettier": "2.3.0",
"source-map-loader": "^3.0.0",
"tape": "^5.2.2",
"ts-loader": "^9.2.2",
"typescript": "^4.3.2",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0",
"webpack-node-externals": "^3.0.0"
}
}