-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 903 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 903 Bytes
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
{
"name": "react-code-view-rollup-example",
"version": "1.0.1",
"private": true,
"type": "module",
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c",
"serve": "serve dist -l 3002"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"@react-code-view/react": "workspace:*"
},
"devDependencies": {
"@react-code-view/unplugin": "workspace:*",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.2.0",
"@rollup/plugin-replace": "^5.0.0",
"@rollup/plugin-typescript": "^11.1.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"rollup": "^4.59.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-serve": "^2.0.2",
"serve": "^14.2.0",
"tslib": "^2.6.0",
"typescript": "^5.3.0"
}
}