-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.37 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
48
49
{
"name": "@mprt/rollup-plugin-incremental",
"version": "0.1.0",
"description": "Rollup plugin for incremental builds",
"keywords": [
"rollup",
"plugin",
"incremental",
"fast"
],
"author": "Ivan Plesskih <[email protected]>",
"license": "MIT",
"main": "src/index.js",
"scripts": {
"serve": "cd example && rollup -cw",
"test": "tsc && mocha"
},
"repository": "https://github.com/mprt-org/rollup-plugin-incremental.git",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.1",
"@babel/plugin-transform-typescript": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-url": "^5.0.1",
"@sentry/browser": "^5.27.2",
"@types/estree": "^0.0.45",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"assert": "^2.0.0",
"mobx": "^5.15.6",
"mobx-react": "^6.3.0",
"mocha": "^8.2.0",
"postcss-nested": "4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rollup": "^2.33.1",
"rollup-plugin-postcss": "^3.1.8",
"rollup-plugin-serve": "^1.0.4",
"sander": "^0.6.0",
"typescript": "^4.0.2"
},
"peerDependencies": {
"rollup": "^2.33.1"
}
}