-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
123 lines (123 loc) · 3.76 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "movieverse",
"displayName": "The MovieVerse",
"version": "1.2.0",
"description": "An interactive movie database app that allows users to search for movies, view movie details, and save movies to their favorites list",
"main": "index.js",
"scripts": {
"install-deps": "npm install",
"start": "http-server -o",
"build": "npm run start",
"test": "http-server -o",
"serve": "http-server -o",
"format": "prettier --config ./MovieVerse-Config/.prettierrc --write \"MovieVerse-Backend/databases/*.{html,css,js,jsx,ts,tsx}\" \"MovieVerse-Frontend/**/*.{html,css,js,jsx,ts,tsx}\" \"MovieVerse-Utilities/**/*.{html,css,js,jsx,ts,tsx}\" \"MovieVerse-Config/**/*.{html,css,js,jsx,ts,tsx}\" \"index.js\" \"404.html\" \"index.html\" \"MovieVerse-Mobile/www/launch-screen.html\" \"microfrontend-layout.html\"",
"docker": "docker compose up",
"backend": "cd MovieVerse-Backend/databases && node app.js && node mongo-redis.js && node mysql.js && node postgresql.js && node publish.js && cd ../django_backend && python manage.py runserver",
"lint": "eslint -c ./MovieVerse-Config/.eslintrc.js .",
"dev:android": "cd MovieVerse-Mobile && cordova run android",
"dev:ios": "cd MovieVerse-Mobile && cordova run ios",
"build:android": "cd MovieVerse-Mobile && cordova build android",
"build:ios": "cd MovieVerse-Mobile && cordova build ios"
},
"keywords": [
"movie",
"database",
"app",
"interactive",
"search",
"view",
"details",
"save",
"favorites",
"list",
"watchlist",
"film",
"themoviedb",
"api",
"javascript",
"react",
"movieverse"
],
"author": "Son Nguyen",
"license": "CC BY-NC 4.0",
"repository": {
"type": "git",
"url": "git+https://github.com/hoangsonww/The-MovieVerse-Database.git"
},
"bugs": {
"url": "https://github.com/hoangsonww/The-MovieVerse-Database/issues"
},
"homepage": "https://movie-verse.com",
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.24.9",
"@babel/preset-env": "^7.25.0",
"@babel/preset-react": "^7.23.3",
"babel-loader": "^9.1.3",
"cordova-android": "^12.0.1",
"cordova-ios": "^7.0.1",
"electron": "^29.1.0",
"electron-builder": "^24.9.1",
"eslint": "^8.56.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-react": "^7.33.2",
"http-server": "^14.1.1",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"open": "^10.1.0",
"prettier": "^3.3.3",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"cordova": {
"platforms": [
"android",
"ios"
]
},
"dependencies": {
"@elastic/elasticsearch": "^8.13.1",
"@faker-js/faker": "^8.4.1",
"@testing-library/dom": "^9.3.4",
"amqplib": "^0.10.4",
"axios": "^1.6.5",
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"clean-webpack-plugin": "^4.0.0",
"cors": "^2.8.5",
"django": "^1.0.0",
"dotenv": "^16.3.1",
"expect": "^29.7.0",
"express": "^4.19.2",
"faker": "^5.5.3",
"html-webpack-plugin": "^5.6.0",
"i18next": "^23.7.11",
"jsonwebtoken": "^9.0.2",
"kubernetes": "^1.0.0",
"lodash": "^4.17.21",
"mongodb": "^6.7.0",
"mongoose": "^8.0.3",
"mysql": "^2.18.1",
"mysql2": "^3.10.1",
"node": "^16.20.2",
"pg": "^8.12.0",
"ramda": "^0.28.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^7.2.9",
"react-router": "^6.0.0",
"react-router-dom": "^6.21.2",
"redis": "^4.6.14",
"redux": "^4.1.2",
"redux-thunk": "^2.4.1",
"single-spa": "^6.0.0",
"styled-components": "^5.3.5",
"vue": "^3.4.23",
"vue-router": "^4.3.2",
"vuex": "^4.1.0",
"webpack-dev-server": "^4.7.3"
}
}