-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 831 Bytes
/
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
{
"name": "react-g-translator-proxy-express",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"clean": "rimraf dist",
"build": "npm install && npm run clean && npx tsc",
"start": "node dist/index.js",
"dev": "nodemon src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.2",
"google-translate-api-x": "^10.6.7",
"mongoose": "^7.6.1",
"node-fetch": "^2.7.0",
"nodemon": "^3.0.1"
},
"devDependencies": {
"@types/cors": "^2.8.14",
"@types/express": "^4.17.19",
"@types/node-fetch": "^2.6.7",
"rimraf": "^5.0.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
}
}