-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.53 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": "rollup-typescript-base-repo",
"version": "1.0.0",
"description": "Base Repo for Library creation with Rollup, Typescript, babel, eslint and static server",
"main": "build/index.js",
"module": "build/component.esm.js",
"scripts": {
"lint": "eslint src/**/*.{ts,tsx}",
"build": "cross-env NODE_ENV=production rollup --c",
"start": "cross-env NODE_ENV=dev rollup --c --w",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"types": "build/index.d.ts",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@typescript-eslint/eslint-plugin": "^2.6.0",
"@typescript-eslint/parser": "^2.6.0",
"autoprefixer": "^9.7.1",
"chokidar": "^3.2.3",
"cross-env": "^6.0.3",
"cssnano": "^4.1.10",
"del": "^5.1.0",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.18.2",
"rollup": "^1.26.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-bundle-html": "^0.2.2",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-generate-html-template": "^1.5.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-livereload": "^1.0.4",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-postcss-modules": "^2.0.1",
"rollup-plugin-progress": "^1.1.1",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-static-site": "^0.1.0",
"rollup-plugin-typescript2": "^0.24.3",
"rollup-plugin-uglify": "^6.0.3",
"typescript": "^3.6.4"
},
"eslintIgnore": [
"src/**/*.d.ts"
]
}