forked from Alwatr/alwatr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.78 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
{
"name": "alwatr",
"description": "The Alwatr Library",
"repository": "https://github.com/AliMD/alwatr/",
"author": "S. Ali Mihandoost <[email protected]> (https://ali.mihandoost.com)",
"license": "MIT",
"private": true,
"workspaces": [
"package/*",
"demo"
],
"scripts": {
"l": "yarn lint",
"b": "yarn build",
"cb": "npm-run-all --sequential clean build",
"s": "yarn serve:dev",
"w": "yarn watch",
"pm": "npm-run-all --sequential clean build ver-minor publish",
"pp": "npm-run-all --sequential clean build ver-patch publish",
"lint": "npm-run-all --sequential lint:*",
"lint:ts": "eslint **/*.ts",
"build": "npm-run-all --sequential lint:* build:*",
"build:ts": "tsc --build",
"clean": "yarn build:ts --clean && lerna exec \"rm -rf dist node_modules\" && find package -name '*.js' -type f -delete && find package -name '*.d.ts' -type f -delete && find package -name '*.map' -type f -delete",
"serve:dev": "web-dev-server --config dev-server.mjs",
"watch": "npm-run-all --parallel watch:* serve:dev",
"watch:ts": "yarn build:ts --watch",
"prepare": "yarn build",
"ver-minor": "lerna version minor --no-push && git push && git push --tags",
"ver-patch": "lerna version patch --no-push && git push && git push --tags",
"publish": "lerna publish from-package"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.16.0",
"@web/dev-server": "^0.1.30",
"eslint": "^8.10.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",
"ts-lit-plugin": "^1.2.1",
"typescript": "^4.6.2"
}
}