forked from alotl/alotl-media
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.58 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
{
"name": "alotl-media",
"version": "1.0.0",
"description": "Centralized platform for sharing recommendations and ratings for all media types with friends",
"main": "index.js",
"scripts": {
"start": "node server/server.js",
"build": "webpack",
"dev": "webpack serve",
"test": "echo \"Error: no test specified\" && exit 1",
"jest": "MODE=test jest --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alotl/alotl-media.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/alotl/alotl-media/issues"
},
"homepage": "https://github.com/alotl/alotl-media#readme",
"dependencies": {
"@popperjs/core": "^2.11.5",
"bcrypt": "^5.0.1",
"bcryptjs": "^2.4.3",
"bootstrap": "^5.1.3",
"cookie-parser": "^1.4.6",
"express": "^4.18.1",
"node-postgres": "^0.6.2",
"pg": "^8.7.3",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/preset-react": "^7.16.7",
"autoprefixer": "^10.4.7",
"babel-loader": "^8.2.5",
"body-parser": "^1.20.0",
"css-loader": "^6.7.1",
"html-webpack-plugin": "^5.5.0",
"jest": "^28.1.0",
"nodemon": "^2.0.16",
"postcss-loader": "^6.2.1",
"sass": "^1.51.0",
"sass-loader": "^12.6.0",
"source-map-loader": "^3.0.1",
"style-loader": "^3.3.1",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0"
}
}