-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.04 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
{
"name": "rolledup",
"version": "0.2.1",
"description": "React SSR with support for browser globals/window.",
"main": "dist/index.js",
"bin": "bin/rolledup",
"scripts": {
"build": "tsc",
"start": "tsc && node dist",
"test": "tsc && node dist ./examples/proj"
},
"keywords": [
"ssr",
"react",
"browser",
"window"
],
"author": "Joseph Harrison-Lim",
"license": "GPL-3.0",
"dependencies": {
"@babel/core": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@rollup/plugin-babel": "^5.2.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"jsdom": "^16.4.0",
"meow": "^7.1.1",
"rollup": "^2.26.9"
},
"devDependencies": {
"@types/babel__core": "^7.1.9",
"@types/jsdom": "^16.2.4",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"typescript": "^4.0.2"
},
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"files": [
"bin",
"dist"
]
}