-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
53 lines (53 loc) · 1.51 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
{
"name": "js-chat",
"private": true,
"version": "0.1.0",
"workspaces": [
"lib",
"samples/*"
],
"scripts": {
"start": "npm-run-all --parallel build:watch astro",
"test": "yarn workspace @pubnub/chat run test",
"build": "yarn workspace @pubnub/chat run build",
"build:watch": "yarn workspace @pubnub/chat run dev",
"astro": "yarn workspace @pubnub/chat-astro run dev",
"eslint:base": "eslint",
"prettier:base": "prettier --ignore-path .gitignore",
"prepare": "node -e \"try { require('husky').install() } catch (e) {if (e.code !== 'MODULE_NOT_FOUND') throw e}\""
},
"lint-staged": {
"*.{js,ts,tsx}": [
"npm run eslint:base -- --fix",
"npm run prettier:base -- --write"
],
"*.{json,md,mdx}": [
"npm run prettier:base -- --write"
]
},
"devDependencies": {
"@commitlint/cli": "17.1.2",
"@commitlint/config-conventional": "17.1.0",
"@eslint/compat": "^1.2.2",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@typescript-eslint/eslint-plugin": "5.37.0",
"@typescript-eslint/parser": "5.37.0",
"buffer": "5.5.0",
"eslint": "9.14.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"npm-run-all": "4.1.5",
"prettier": "2.7.1",
"typescript": "4.9.5"
},
"resolutions": {
"send": "0.19.0",
"semver": "7.6.3",
"ws": "8.17.1"
},
"packageManager": "[email protected]"
}