-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.24 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
{
"name": "what-year",
"version": "1.0.0",
"description": "A game where players take guesses as to when certain events took place in history.",
"main": "index.js",
"scripts": {
"start": "nodemon --exec babel-node server.js --ignore public/",
"dev": "webpack -wd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/savreline/what-year.git"
},
"author": "Alexandre (Sasha) Avreline",
"license": "ISC",
"bugs": {
"url": "https://github.com/savreline/what-year/issues"
},
"homepage": "https://github.com/savreline/what-year#readme",
"dependencies": {
"axios": "^1.6.0",
"body-parser": "^1.20.1",
"d3": "^7.6.1",
"ejs": "^3.1.7",
"express": "^4.18.2",
"mongodb": "^3.5.8",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/node": "^7.10.1",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"eslint": "^7.2.0",
"eslint-plugin-react": "^7.20.0",
"nodemon": "^2.0.20",
"webpack": "^5.76.0",
"webpack-cli": "^3.3.11"
}
}