-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.35 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": "reveal-react",
"private": false,
"version": "0.4.6",
"description": "Reveal.js in a component pattern for ReactJS or NextJS",
"author": "Hayden Smith <hayden@bitflip.com.au> (http://bitflip.com.au)",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/chamhayden/reveal-react"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [],
"bugs": {
"url": "https://github.com/chamhayden/reveal-react/issues"
},
"homepage": "https://github.com/chamhayden/reveal-react#readme",
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.5",
"@babel/plugin-transform-runtime": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-react": "^7.16.5",
"@babel/runtime": "^7.16.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.1",
"autoprefixer": "^10.4.0",
"rollup": "^2.62.0",
"rollup-plugin-styles": "^3.14.1"
},
"dependencies": {
"@rollup/plugin-typescript": "^8.3.1",
"@types/react": "^17.0.38",
"next": "11.1.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"reveal.js": "^4.1.3",
"rollup-plugin-sourcemaps": "^0.6.3",
"typescript": "^4.6.2"
},
"scripts": {
"build": "tsc && rollup -c"
},
"prepublish": "yarn build"
}