-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.46 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
50
{
"name": "ifttha",
"version": "0.1.0",
"description": "A IFTTT-like browser extension for Home Assistant",
"main": "index.js",
"author": "Emanuele Marchi <[email protected]>",
"license": "MIT",
"private": true,
"engines": {
"node": "^14.15"
},
"scripts": {
"build": "parcel build -d dist src/index.ts src/popup.html",
"clean": "rm -rf dist",
"dev": "parcel watch -d dist src/index.ts src/popup.html",
"ext": "web-ext run",
"ext-lint": "web-ext lint",
"lint": "eslint . --ext .ts",
"serve": "yarn dev"
},
"devDependencies": {
"@tailwindcss/postcss7-compat": "^2.0.2",
"@types/lodash": "^4.14.166",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"autoprefixer": "^9",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-html": "^6.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-promise": "^4.2.1",
"parcel-bundler": "^1.12.4",
"parcel-plugin-static-files-copy": "^2.5.0",
"parcel-plugin-web-ext-tool": "^0.2.1",
"postcss": "^7",
"postcss-modules": "^4.0.0",
"prettier": "^2.2.1",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"typescript": "^4.1.3",
"web-ext": "^5.4.1",
"webextension-polyfill-ts": "^0.22.0"
},
"dependencies": {
"alpinejs": "^2.8.0",
"lodash": "^4.17.20",
"uuid": "^8.3.2"
}
}