-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
68 lines (68 loc) · 2.22 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
{
"name": "react-aldrin",
"version": "0.1.1",
"description": "An experimental React Suspense serverside renderer",
"author": "Fredrik Höglund",
"license": "MIT",
"repository": "github:Ephem/react-aldrin",
"homepage": "https://github.com/Ephem/react-aldrin#readme",
"bugs": "https://github.com/Ephem/react-aldrin/issues",
"main": "dist/index.js",
"engines": {
"node": ">=6.0.0"
},
"files": ["dist/", "react.js"],
"scripts": {
"build":
"npm run build:babel && npm run build:rollup && npm run examples:basic:build",
"build:babel":
"rimraf dist && babel src/renderer --out-dir dist --ignore __tests__",
"build:rollup": "rimraf react.js && rollup -c",
"build:babel:watch": "npm run build:babel -- --watch",
"build:rollup:watch": "npm run build:rollup -- --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:manual": "babel-node manualtest.js",
"examples:basic:build":
"cd examples/basic && webpack --mode production --module-bind js=babel-loader && cd ../..",
"examples:basic:start": "node examples/basic"
},
"dependencies": {
"fbjs": "0.8.16",
"raf": "^3.4.0",
"react-reconciler": "0.18.0-alpha.2"
},
"peerDependencies": {
"react": "16.7.0-alpha.2",
"react-dom": "16.7.0-alpha.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"express": "^4.16.4",
"isomorphic-fetch": "^2.2.1",
"jest": "^22.4.3",
"jest-dom": "^3.0.0",
"nodemon": "^1.17.3",
"prettier": "^1.12.1",
"prettier-cli": "^0.1.0",
"react-testing-library": "^5.3.2",
"react": "16.7.0-alpha.2",
"react-dom": "16.7.0-alpha.2",
"rimraf": "^2.6.2",
"rollup": "^0.58.2",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-uglify": "^3.0.0",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2"
}
}