-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 806 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 806 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
{
"name": "sample3",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"postbuild": "./node_modules/.bin/rollup -c rollup.config.js",
"compile": "tsc --p tsconfig.json && npm run postbuild",
"build": "npm run postbuild"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/react": "^16.4.7",
"@types/react-dom": "^16.0.6",
"@types/rollup": "^0.54.0",
"rollup": "^0.63.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-livereload": "^0.6.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-serve": "^0.4.2",
"rollup-plugin-typescript2": "^0.16.1",
"typescript": "^2.9.2"
},
"dependencies": {
"react": "^16.4.1",
"react-dom": "^16.4.1"
}
}