-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
90 lines (90 loc) · 3.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
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
{
"name": "server-components-boilerplate",
"version": "1.0.0",
"dependencies": {
"compression": "^1.7.4",
"excerpts": "^0.0.3",
"express": "^4.17.1",
"marked": "^1.2.5",
"react": "0.0.0-experimental-3310209d0",
"react-dom": "0.0.0-experimental-3310209d0",
"react-error-boundary": "^3.1.0",
"react-fetch": "0.0.0-experimental-3310209d0",
"react-fs": "0.0.0-experimental-3310209d0",
"react-server-dom-webpack": "0.0.0-experimental-3310209d0",
"sanitize-html": "^2.2.0"
},
"devDependencies": {
"@babel/cli": "7.12.10",
"@babel/core": "7.12.3",
"@babel/node": "7.12.10",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/plugin-proposal-export-default-from": "7.12.1",
"@babel/plugin-proposal-export-namespace-from": "7.12.1",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.12.1",
"@babel/plugin-proposal-optional-chaining": "7.12.7",
"@babel/plugin-transform-flow-strip-types": "7.12.10",
"@babel/plugin-transform-react-jsx-source": "7.12.1",
"@babel/preset-react": "7.12.10",
"@babel/preset-typescript": "7.12.7",
"@babel/register": "^7.12.1",
"@pmmmwh/react-refresh-webpack-plugin": "0.4.3",
"@types/babel__core": "7.1.12",
"@types/compression": "^1.7.0",
"@types/concurrently": "5.2.1",
"@types/express": "^4.17.9",
"@types/jest": "26.0.19",
"@types/marked": "^1.2.1",
"@types/nodemon": "1.19.0",
"@types/prettier": "2.1.6",
"@types/react": "17.0.0",
"@types/react-dom": "17.0.0",
"@types/rimraf": "3.0.0",
"@types/sanitize-html": "^1.27.0",
"@types/webpack": "4.41.25",
"@types/webpack-node-externals": "2.5.0",
"babel-jest": "26.6.3",
"babel-loader": "8.1.0",
"babel-preset-react-app": "10.0.0",
"concurrently": "5.3.0",
"html-webpack-plugin": "4.5.0",
"husky": "4.3.6",
"jest": "26.6.3",
"jest-environment-jsdom-sixteen": "1.0.3",
"lint-staged": "10.5.2",
"nodemon": "2.0.6",
"prettier": "2.2.1",
"rimraf": "3.0.2",
"ts-node": "9.1.1",
"typescript": "4.1.3",
"webpack": "4.44.2",
"webpack-cli": "4.2.0",
"webpack-node-externals": "2.5.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"license": "MIT",
"lint-staged": {
"*.{js,ts,tsx}": [
"yarn prettier"
],
"*.yml": [
"yarn prettier"
]
},
"scripts": {
"b": "babel-node --extensions \".es6,.js,.es,.jsx,.mjs,.ts,.tsx\"",
"b-server": "babel-node --extensions \".es6,.js,.es,.jsx,.mjs,.ts,.tsx\" --conditions=react-server",
"bundler:dev": "NODE_ENV=development nodemon -- scripts/build.js",
"client": "NODE_ENV=development webpack --watch --progress --config webpack.client.config.js",
"plugin": "babel --extensions \\\".es6,.js,.es,.jsx,.mjs,.ts,.tsx\\\" --watch plugin/**.ts --out-dir ./plugin",
"prettier": "prettier --write",
"server": "webpack --watch --progress --config webpack.server.config.js",
"start": "webpack --watch --progress --config webpack.config.js",
"start2": "concurrently \"npm run server:dev\" \"npm run bundler:dev\"",
"w": "yarn b webpackx.ts"
}
}