-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.36 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
{
"name": "preact-widget-starter",
"version": "0.1.0",
"description": "Starter for developing preact widgets my way",
"source": "src/index.js",
"main": "dist/index.js",
"module": "dist/index.module.js",
"umd:main": "dist/index.umd.js",
"scripts": {
"dev": "preact watch --template src/template.html",
"build:pkg": "microbundle -i src/index.js --no-pkg-main -f iife --sourcemap false --external none",
"build:export": "microbundle -i src/index.js --no-pkg-main -f iife --no-sourcemap --external none --output",
"watch:export": "microbundle -w -i src/index.js --define NODE_ENV='development' --no-pkg-main -f iife --external none --output",
"lint": "eslint 'src/**/*.js'"
},
"author": "Paul Mourer <[email protected]>",
"license": "MIT",
"dependencies": {
"preact": "^10.5.7",
"preact-habitat": "^3.3.0"
},
"devDependencies": {
"@typescript-eslint/parser": "^4.28.2",
"eslint": "^7.29.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"microbundle": "^0.13.3",
"prettier": "^2.3.1",
"typescript-plugin-css-modules": "^3.4.0"
}
}