-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.73 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": "camelcasetranslater",
"version": "1.0.0",
"description": "socket-api",
"exports": "./src/server.ts",
"repository": "na",
"author": "Gleisin",
"license": "Mit",
"type": "commonjs",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"scripts": {
"build": "tsc",
"watch-ts": "tsc -w",
"watch-node": "nodemon dist/server.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript, Node\" -c \"yello.bold, cyan.bold\" \"yarn run watch-ts\" \"yarn run watch-node\"",
"test": "mocha -r ts-node/register src/**/*.spec.ts",
"dev": "ts-node-dev --transpile-only --ignore-watch node_modules src/server.ts",
"dev-no-filter": "ts-node-dev src/server.ts",
"nodemon": "nodemon --watch src ./src/server.ts"
},
"dependencies": {
"@google-cloud/translate": "^6.3.1",
"@typegoose/typegoose": "^9.8.0",
"@types/crypto-js": "^4.1.1",
"@types/express": "^4.17.13",
"@types/socket.io": "^3.0.2",
"@types/uuid": "^8.3.4",
"concurrently": "^7.0.0",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.0",
"dotenv-extended": "^2.9.0",
"express": "^4.17.2",
"google-translate": "^3.0.0",
"mongodb": "^4.4.0",
"mongoose": "^6.3.0",
"nodemon": "^2.0.15",
"reflect-metadata": "^0.1.13",
"socket.io": "^4.4.1",
"typegoose": "^5.9.1",
"typeorm": "0.3.6",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/mongodb": "^4.0.7",
"@types/node": "^17.0.17",
"cors": "^2.8.5",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.5"
}
}