This repository has been archived by the owner on Feb 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.69 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
{
"name": "animal-house",
"version": "1.0.0",
"description": "",
"main": "out/index.js",
"scripts": {
"db": "docker-compose up -d",
"db:down": "docker-compose down",
"server": "tsc -p server && cp server/src/index.html public/ && node out/index.js",
"front": "npm run --prefix frontoffice start",
"game": "npm run --prefix game start",
"all": "npm run server & npm run front & npm run game",
"build:server": "tsc -p server",
"build:front": "npm run --prefix frontoffice build",
"build:game": "npm run --prefix game build",
"build": "tsc -p server && npm run --prefix frontoffice build && npm run --prefix game build",
"start": "node out/index.js",
"format": "eslint --fix & prettier --write './**/*.{js,jsx,ts,tsx,css,md,json,vue}' --config ./.prettierrc",
"setup": "npm --prefix frontoffice install && npm --prefix game install && npm --prefix server install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kocierik/TecnologieWeb.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kocierik/TecnologieWeb/issues"
},
"homepage": "https://github.com/kocierik/TecnologieWeb#readme",
"dependencies": {
"@types/node": "^18.11.9",
"bcrypt": "^5.0.1",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"eslint": "^8.32.0",
"express": "^4.18.1",
"install": "^0.13.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.3.3",
"multer": "^1.4.5-lts.1",
"npm": "^8.19.3",
"prettier": "^2.8.3",
"swagger-jsdoc": "^6.2.5",
"swagger-ui-express": "^4.5.0",
"typescript": "^4.8.4",
"yarn": "^1.22.19"
},
"devDependencies": {
"@types/node": "^18.11.10"
}
}