-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.4 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
{
"name": "chat-tp-ts",
"version": "1.0.0",
"description": "chat with using fp-ts library",
"main": "dist/index.js",
"scripts": {
"watch-ts": "cross-env NODE_ENV=development webpack --watch --config webpack.config.js",
"pre-build": "cross-env NODE_ENV=development webpack --watch --config webpack.config.js",
"watch-server": "nodemon --delay 500ms --watch ./dist dist/server.js",
"start": "rm -rf ./dist && cross-env NODE_ENV=development webpack --config webpack.config.js && concurrently \"npm:watch-ts\" \"npm:watch-server\"",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "husky install",
"prepare": "husky install"
},
"keywords": [
"fp",
"ts",
"fp-ts",
"typescript",
"chat",
"websocket",
"ws",
"react",
"redux"
],
"author": "snatvb",
"license": "MIT",
"devDependencies": {
"@types/uuid": "^8.3.1",
"@types/ws": "^7.4.7",
"concurrently": "^6.2.0",
"cross-env": "^7.0.3",
"dotenv-webpack": "^7.0.3",
"husky": "^7.0.1",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"prettier-check": "^2.0.0",
"ts-loader": "^9.2.4",
"typescript": "^4.3.5",
"webpack": "^5.47.1",
"webpack-cli": "^4.7.2",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"fp-ts": "2.11.1",
"io-ts": "^2.2.16",
"monocle-ts": "^2.3.10",
"uuid": "^8.3.2",
"ws": "^7.5.3"
}
}