-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.11 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
{
"name": "signal",
"version": "1.0.0-rc.0",
"main": "signal.js",
"repository": "git@github.com:mohammadhonarvar/signal.git",
"author": "Mohammad Honarvar <honarvar.info@gmail.com>",
"license": "UNLICENSED",
"type": "module",
"scripts": {
"b": "yarn build",
"w": "yarn watch",
"c": "yarn clean",
"clean": "tsc --build --clean",
"lint": "run-s lint:*",
"lint:ts": "eslint . --config .eslintrc.json --ext .ts --fix",
"build": "yarn build:ts",
"build:ts": "tsc --build",
"watch:ts": "yarn build:ts --watch --preserveWatchOutput",
"serve": "wds",
"watch": "run-p watch:* serve"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"@web/dev-server": "^0.3.6",
"esbuild": "^0.21.5",
"esbuild-plugin-d-ts-path-alias": "^4.2.0",
"eslint": "^8.52.0",
"eslint-config-google": "^0.14.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"npm-run-all": "^4.1.5",
"typescript": "^5.2.2"
},
"dependencies": {
"@alwatr/logger": "1.1.2"
}
}