-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.87 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "nodepop",
"version": "1.0.0",
"description": "Nodepop backend",
"main": "index.js",
"devDependencies": {
"@types/bcryptjs": "^2.4.4",
"@types/cors": "^2.8.14",
"@types/debug": "^4.1.8",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/lodash": "^4.14.198",
"@types/morgan": "^1.9.5",
"@types/multer": "^1.4.7",
"@types/node": "^20.6.3",
"@types/swagger-ui-express": "^4.1.4",
"@types/yaml": "^1.9.7",
"@types/yamljs": "^0.2.32",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.49.0",
"mkdirp": "^3.0.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
},
"scripts": {
"server": "cross-env DEBUG=nodepop-ts:* ts-node-dev --files src/index.ts",
"client": "cd client && npm run dev",
"dev": "concurrently --kill-others-on-fail \" npm run server\" \"npm run client\"",
"build-server": "rm -rf build && tsc",
"build-client": "mkdirp build/public/uploads && cp -R src/public/* build/public && cd client && npm run build && cp -fr dist/* ../build/public && cp -R ../backup/* ../build/public/uploads",
"lint": "eslint --ext .ts .",
"start": "node build/index.js",
"setup-project": "npm i && cd client && npm i",
"setup-production-build": "npm i && cd client && npm i && cd .. && npm run build-server && npm run build-client",
"rebuild-app": "npm run create-backup && npm run setup-production-build",
"create-backup": "mkdirp -p backup && cp -R build/public/uploads/* backup/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JoseAlbDR/nodepop-backend-ts.git"
},
"author": "J.Alberto Delgado",
"license": "ISC",
"bugs": {
"url": "https://github.com/JoseAlbDR/nodepop-backend-ts/issues"
},
"homepage": "https://github.com/JoseAlbDR/nodepop-backend-ts#readme",
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@faker-js/faker": "^8.1.0",
"@mui/icons-material": "^5.14.9",
"@mui/material": "^5.14.10",
"@types/cookie-parser": "^1.4.4",
"@types/jsonwebtoken": "^9.0.3",
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"concurrently": "^8.2.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dayjs": "^1.11.10",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^7.0.2",
"express-validator": "^7.0.1",
"faker": "^6.6.6",
"helmet": "^7.0.0",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"mongoose": "^7.5.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nanoid": "^5.0.1",
"react-animated-heart": "^0.0.8",
"react-spinners": "^0.13.8",
"swagger-ui-express": "^5.0.0",
"yamljs": "^0.3.0"
}
}