-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
executable file
·41 lines (41 loc) · 1.21 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
{
"name": "rollup-starter",
"version": "0.0.1",
"main": "./dist/common.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && rollup -c",
"lint": "eslint --ext .ts,.tsx src",
"publish": "yarn build && yarn publish",
"update": "ncu -u"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/plugin-proposal-object-rest-spread": "^7.14.7",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@rollup/plugin-alias": "^3.1.5",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-strip": "^2.1.0",
"@types/react": "^17.0.19",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"eslint": "^7.32.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.1",
"prettier": "^2.3.2",
"rollup": "^2.56.3",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.4.2"
}
}