-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.33 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "shaf-i-pwa",
"version": "0.0.0",
"description": "Shaf-i PWA",
"author": "MohammadMahdi Zamanian <[email protected]> (https://mm25zamanian.ir)",
"type": "module",
"license": "MIT",
"private": true,
"scripts": {
"l": "yarn lint",
"b": "yarn build",
"cb": "npm-run-all --sequential clean build",
"s": "yarn serve:dev",
"w": "yarn watch",
"lint": "npm-run-all --sequential lint:*",
"lint:ts": "eslint '**/*.ts'",
"build": "npm-run-all --sequential build:ts build:es",
"build:ts": "tsc --build --pretty",
"build:es": "rollup -c",
"format": "npm-run-all --parallel format:prettier format:eslint",
"format:eslint": "eslint '**/*.ts' --fix",
"format:prettier": "prettier \"**/*.{html,json,md,ts}\" --ignore-path ./.eslintignore --write",
"clean": "yarn build:ts --clean && rm -rf dist && find src -name '*.js' -type f -delete && find src -name '*.d.ts' -type f -delete && find src -name '*.map' -type f -delete",
"serve:dev": "web-dev-server --config dev-server.mjs",
"serve:dist": "web-dev-server --config dev-server-dist.mjs",
"watch": "npm-run-all --print-label --parallel watch:* serve:dev",
"watch:ts": "yarn build:ts --watch --preserveWatchOutput"
},
"dependencies": {
"@alwatr/fetch": "^0.9.0",
"@alwatr/logger": "^0.9.0",
"@alwatr/router": "^0.9.0",
"@alwatr/signal": "^0.9.0",
"@webcomponents/webcomponentsjs": "^2.6.0",
"lit": "^2.2.1",
"tslib": "^2.3.1"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"@web/dev-server": "^0.1.30",
"@web/rollup-plugin-copy": "^0.3.0",
"@web/rollup-plugin-html": "^1.10.2",
"@web/rollup-plugin-polyfills-loader": "^1.2.0",
"eslint": "^8.11.0",
"eslint-config-google": "^0.14.0",
"eslint-import-resolver-typescript": "^2.7.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-wc": "^1.3.2",
"lerna": "^4.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"rollup": "^2.70.1",
"rollup-plugin-minify-html-literals": "^1.2.6",
"rollup-plugin-summary": "^1.3.0",
"rollup-plugin-terser": "^7.0.2",
"ts-lit-plugin": "^1.2.1",
"typescript": "^4.5.5"
}
}