-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
46 lines (46 loc) · 1.49 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
{
"private": true,
"name": "rollup-typescript-react-starter",
"version": "1.0.0",
"repository": "[email protected]:saltyshiomix/rollup-typescript-react-starter.git",
"author": "Shiono Yoshihide <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "rollup -c -w",
"build": "rimraf public && cross-env NODE_ENV=production rollup -c",
"start": "serve public"
},
"dependencies": {
"react": "^16.13.0",
"react-dom": "^16.13.0"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@babel/runtime-corejs3": "^7.8.7",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-html": "^0.1.1",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-replace": "^2.3.1",
"@types/node": "^13.7.7",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
"babel-plugin-react-require": "^3.1.3",
"cross-env": "^7.0.2",
"rimraf": "^3.0.2",
"rollup": "^1.32.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-livereload": "^1.0.4",
"rollup-plugin-scss": "^2.1.0",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-terser": "^5.2.0",
"serve": "^11.3.0",
"typescript": "^3.8.3"
}
}