freechat/freechat-client/package.json
shockrah d620d3cc61 New types module written with typescript to slowly start migrating code over to typescript
The main reason for this change is for writing more descriptive code
Such a change isn't impossible with JS but requires annoying doccing that  most dev environments don't really pick up on ever

Also the cache system is goingto be much more complex than anything else in this project so static compilation should help remove annoyances
2021-03-11 17:22:05 -08:00

26 lines
550 B
JSON

{
"name": "freechat-client",
"version": "0.1.0",
"main": "main.js",
"scripts": {
"build": "sh scripts/build-sass.sh build",
"start": "electron . --",
"test": "node testing/main.js"
},
"dependencies": {
"argparse": "^2.0.1",
"bootstrap": "^4.6.0",
"got": "^11.8.1",
"jquery": "^3.5.1",
"jsonwebtoken": "^8.5.1",
"popper.js": "^1.16.1",
"socket.io": "^3.1.1",
"socket.io-client": "^3.1.1",
"typescript": "^4.2.3",
"ws": "^7.4.3"
},
"devDependencies": {
"electron": "^7.3.3"
}
}