-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.26 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
{
"name": "websocketer",
"version": "1.0.0",
"description": "A small CLI node app to test communication over websockets.",
"main": "dist/index.js",
"scripts": {
"build:cleanup": "rimraf dist",
"build:compile": "tsc",
"build": "npm run build:cleanup && npm run build:compile",
"prepare": "husky install",
"prettier-check": "prettier --config .prettierrc --ignore-path .prettierignore --check \"**/*.ts\"",
"prettify-all": "prettier --config .prettierrc --ignore-path .prettierignore --write \"**/*.ts\"",
"eslint": "eslint . --max-warnings 0 --ext ts,js",
"start": "node dist/index.js",
"start-dev": "nodemon"
},
"author": "Albina Ezus",
"license": "MIT",
"dependencies": {
"express": "^4.17.1",
"ws": "^7.4.6"
},
"devDependencies": {
"@types/blessed": "^0.1.19",
"@types/express": "^4.17.13",
"@types/ws": "^8.2.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.2",
"nodemon": "^2.0.13",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"typescript": "^4.4.3"
},
"nodemonConfig": {
"ext": "ts",
"ignore": [
"dist/*",
"node_modules/*"
],
"exec": "npm run build && npm run start"
}
}