-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.16 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
{
"name": "reactus",
"version": "0.0.14",
"description": "Reactus is an un-opinionated, un-routed React app build engine",
"author": "Christian Blanquera <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/openovate/reactus#readme",
"bugs": {
"url": "https://github.com/openovate/reactus/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openovate/reactus.git"
},
"keywords": [
"react",
"ssr"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"client",
".babelrc"
],
"scripts": {
"build": "tsc",
"docs": "typedoc",
"test:unit": "jest --config test/jest-unit.config.js",
"test:browser": "JEST_PUPPETEER_CONFIG=test/jest-puppeteer.config.js jest --config test/jest-browser.config.js",
"test:serve": "babel-node test/shim.js quick-start-example/src/server"
},
"dependencies": {
"@babel/core": "^7.6.2",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@openovate/jsm": "0.0.14",
"@openovate/webpack-jailbreak": "^0.0.6",
"babel-loader": "^8.0.6",
"history": "^4.10.1",
"path-to-regexp": "^3.1.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"require-from-string": "^2.0.2",
"watchpack": "^1.6.0",
"webpack": "^4.40.2",
"webpack-dev-middleware": "^3.7.1",
"webpack-hot-middleware": "^2.25.0"
},
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/node": "^7.6.1",
"@openovate/express-router": "^0.0.16",
"@types/express": "^4.17.1",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.11",
"@types/react": "^16.9.5",
"@types/react-dom": "^16.9.1",
"@types/webpack": "^4.39.2",
"@types/webpack-dev-middleware": "^2.0.3",
"@types/webpack-hot-middleware": "^2.16.5",
"express": "^4.17.1",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"jest-puppeteer": "^4.3.0",
"puppeteer": "^1.20.0",
"react-hot-loader": "^4.12.14",
"ts-jest": "^24.0.2",
"typedoc": "^0.15.0",
"typedoc-plugin-markdown": "^2.1.11",
"typescript": "^3.6.3",
"webpack-cli": "^3.3.9"
}
}