-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.02 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.02 KB
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
{
"name": "radalata",
"version": "1.0.0",
"description": "radalata app in the batman movie",
"main": "app.ts",
"dependencies": {
"command-line-args": "^5.2.1",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"fs-extra": "^11.1.0",
"helmet": "^7.0.0",
"jet-logger": "^1.3.1",
"memory-cache": "^0.2.0",
"module-alias": "^2.2.2",
"mongoose": "^6.5.5",
"next": "^13.4.5",
"postcss": "^8.4.21",
"react": "^18.2.0",
"redis": "^4.6.7",
"sass": "^1.58.3",
"socket.io": "^4.5.2",
"socket.io-client": "^4.6.1"
},
"devDependencies": {
"@types/command-line-args": "^5.2.0",
"@types/express": "^4.17.17",
"@types/fs-extra": "^11.0.1",
"@types/memory-cache": "^0.2.2",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/redis": "^4.0.11",
"eslint": "^8.42.0",
"eslint-config-next": "13.4.5",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.9.4"
},
"scripts": {
"build": "npm run build:server && npm run build:next",
"build:server": "./node_modules/.bin/ts-node build.ts --project tsconfig.server.json",
"build:next": "next build",
"start": "node -r module-alias/register ./dist --env=production",
"dev": "nodemon",
"lint": "next lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Emam546/RadaLata.git"
},
"keywords": [
"radalata",
"batman",
"nodejs",
"socket-app"
],
"author": "ImamAshour",
"license": "ISC",
"bugs": {
"url": "https://github.com/Emam546/RadaLata/issues"
},
"homepage": "https://github.com/Emam546/RadaLata#readme",
"nodemonConfig": {
"watch": [
"server/src"
],
"ext": "ts, html",
"ignore": [
"src/public"
],
"exec": "./node_modules/.bin/ts-node --project tsconfig.server.json --files -r tsconfig-paths/register ./server/src"
},
"_moduleAliases": {
"@serv": "dist"
},
"engines": {
"node": ">=8.10.0"
}
}