-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 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
{
"name": "klar.land_websoket",
"version": "1.0.0",
"main": "index.js",
"repository": "",
"author": "ltphen<[email protected]>",
"scripts": {
"start": "concurrently \"yarn run bundle:watch\" \"yarn run run:watch\"",
"start:dev": "nodemon --watch \"./**\" --ext \"ts,json\" --ignore \"src/**/*.spec.ts\" --exec \"ts-node src/index.ts\"",
"run": "node build/index.js",
"run:watch": "nodemon build/index.js",
"bundle": "webpack --config webpack.config.js",
"bundle:watch": "yarn run bundle --watch",
"build": "yarn run bundle --progress",
"build:release": "webpack --config webpack.config.js --progress",
"tsc": "tsc && rm -rf build",
"test": "mocha -r ts-node/register ./**/*.spec.ts"
},
"dependencies": {
"@types/express": "^4.17.13",
"body-parser": "^1.19.0",
"concurrently": "^6.4.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.3",
"helmet": "^4.6.0",
"morgan": "^1.10.0",
"nodemon": "^2.0.12",
"socket.io": "^4.4.1",
"ts-node": "^10.2.1"
},
"devDependencies": {
"@types/body-parser": "^1.19.1",
"@types/chai": "^4.3.0",
"@types/cors": "^2.8.12",
"@types/mocha": "^9.1.0",
"@types/morgan": "^1.9.3",
"@types/node": "^16.6.1",
"@types/socket.io-client": "^3.0.0",
"chai": "^4.3.6",
"mocha": "^9.2.1",
"socket.io-client": "^4.4.1",
"ts-loader": "^9.2.5",
"typescript": "^4.3.5",
"webpack": "^5.50.0",
"webpack-cli": "^4.9.2",
"webpack-node-externals": "^3.0.0"
}
}