-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 745 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 745 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
{
"name": "rolluptypescript",
"version": "1.0.0",
"description": "",
"main": "index.js",
"author": "",
"license": "ISC",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"dev": "npm-run-all --parallel start watch",
"start": "serve public"
},
"devDependencies": {
"@types/react": "^16.9.13",
"@types/react-dom": "^16.9.4",
"npm-run-all": "^4.1.5",
"rollup": "^1.27.6",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-typescript": "^1.0.1",
"serve": "^11.2.0",
"tslib": "^1.10.0",
"typescript": "^3.7.2"
},
"dependencies": {
"htm": "^2.2.1",
"preact": "^10.0.5"
}
}