-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.01 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
{
"dependencies": {
"@google-cloud/translate": "^8.0.2",
"@types/multer": "^1.4.9",
"@types/node": "^18",
"axios": "^1.6.2",
"body-parser": "^1.20.2",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"mongodb": "^6.2.0",
"multer": "^1.4.5-lts.1",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"type": "module",
"name": "sampo",
"description": "## What the project does?",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "rimraf server/dist client/public/script.js client/public/script.js.map && npx tsc -p server/tsconfig.json && npx tsc -p client/tsconfig.json",
"start": "node server/dist/index.js",
"preserve": "npm run build",
"serve": "concurrently \"npx tsc -p server/tsconfig.json\" \"npx tsc -p client/tsconfig.json\" \"npx nodemon server/dist/index.js\""
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.17",
"concurrently": "^8.2.1",
"rimraf": "^5.0.1"
}
}