forked from MaxWeisen/triviaGame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (52 loc) · 1.49 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
{
"name": "triviagame",
"version": "1.0.0",
"description": "\"trivia game\"",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "NODE_ENV=production nodemon server/server.js",
"build": "NODE_ENV=production webpack --config webpack.config.js",
"dev": "NODE_ENV=development webpack serve & nodemon server/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WizardSource/triviaGame.git"
},
"keywords": [
"\"trivia\""
],
"author": "Codesmith-Red",
"license": "ISC",
"bugs": {
"url": "https://github.com/WizardSource/triviaGame/issues"
},
"homepage": "https://github.com/WizardSource/triviaGame#readme",
"dependencies": {
"@babel/preset-react": "^7.13.13",
"express": "^4.17.1",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.7",
"react": "^17.0.2",
"react-audio-player": "^0.16.1",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0",
"watch": "^1.0.2",
"webpack": "^5.30.0"
},
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/preset-env": "^7.13.12",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.0",
"file-loader": "^6.2.0",
"mini-css-extract-plugin": "^1.4.0",
"mongoose": "^5.12.3",
"path": "^0.12.7",
"sass": "^1.32.8",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
}
}