-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.47 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
{
"name": "gyrosyncopation",
"version": "1.9.1",
"description": "cyberpunk hide and seek with RPG elements",
"main": "index.js",
"scripts": {
"start": "node server/index.js",
"start-dev": "nodemon server/index.js",
"react-dev": "webpack -d --watch",
"build": "webpack -p",
"test": "node server/liveServer.js",
"seed": "node database/seed.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DanielGodfrey-Dev/Gyrosyncopation.git"
},
"keywords": [
"game",
"cyberpunk",
"rpg"
],
"author": "Geist",
"license": "ISC",
"bugs": {
"url": "https://github.com/DanielGodfrey-Dev/Gyrosyncopation/issues"
},
"homepage": "https://github.com/DanielGodfrey-Dev/Gyrosyncopation#readme",
"dependencies": {
"@babel/polyfill": "^7.8.7",
"@material-ui/core": "^4.9.11",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.50",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"mongoose": "^5.9.10",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"babel-loader": "^8.1.0",
"css-loader": "^3.5.2",
"faker": "^4.1.0",
"file-loader": "^6.0.0",
"nodemon": "^2.0.3",
"style-loader": "^1.1.4",
"url-loader": "^4.1.0",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
}
}