-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.83 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
{
"name": "whatintheworld",
"version": "1.0.0",
"description": "A world trivia game",
"main": "index.js",
"scripts": {
"test": "jest",
"dev": "concurrently \"webpack-dev-server --mode development --hot --open --color\" \"nodemon server/server.js\"",
"start": "nodemon server/server.js",
"build": "webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlpsCo/WhatInTheWorld.git"
},
"author": "JP Keith, Tony Diethelm, Brian Peinado, Hannah Bernstein, Zihao Li",
"license": "ISC",
"bugs": {
"url": "https://github.com/AlpsCo/WhatInTheWorld/issues"
},
"homepage": "https://github.com/AlpsCo/WhatInTheWorld#readme",
"dependencies": {
"@chakra-ui/react": "^2.4.1",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"babel-loader": "^8.2.5",
"bcrypt": "^5.1.0",
"css-loader": "^6.7.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"file-loader": "^6.2.0",
"framer-motion": "^7.6.7",
"node-fetch": "^2.6.6",
"path": "^0.12.7",
"pg": "^8.8.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.4.1",
"sass": "^1.55.0",
"sass-loader": "^13.1.0"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@jest/globals": "^29.3.1",
"@testing-library/react": "^13.4.0",
"babel-jest": "^29.3.1",
"clean-webpack-plugin": "^4.0.0",
"concurrently": "^7.4.0",
"cross-env": "^7.0.3",
"eslint": "^8.24.0",
"eslint-plugin-react": "^7.31.8",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"react-test-renderer": "^18.2.0",
"style-loader": "^3.3.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
}
}