-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.34 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
{
"name": "knight-chess-3",
"version": "14.16.1",
"description": "This is an application created in order to play a multiplayer chess game. It features Node.JS, Express, and React, as well as some other libraries and modules within the client-side code to help bring the app to life.",
"main": "webpack.config.js",
"scripts": {
"start": "npm run build & node server",
"build": "webpack --mode=production",
"start:dev": "npm run start-server & npm run build-watch",
"build-watch": "webpack -w --mode=development",
"start-server": "nodemon server --ignore public"
},
"keywords": [],
"author": "Anthony Sgro",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@babel/register": "^7.10.5",
"@babel/runtime": "^7.14.8",
"@shopify/draggable": "^1.0.0-beta.8",
"babel-loader": "^8.2.2",
"chess.js": "^0.12.0",
"crypto-browserify": "^3.12.0",
"css-loader": "^6.2.0",
"express": "^4.17.1",
"file-loader": "^6.2.0",
"lodash": "^4.17.21",
"lodash.clonedeep": "^4.5.0",
"lzutf8": "^0.6.0",
"morgan": "^1.10.0",
"os-browserify": "^0.3.0",
"random": "^3.0.6",
"react": "^17.0.1",
"react-awesome-spinners": "^1.3.1",
"react-dnd": "^14.0.2",
"react-dnd-html5-backend": "^14.0.0",
"react-dom": "^17.0.1",
"react-redux": "^7.2.3",
"react-responsive-modal": "^6.1.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"sequelize": "^6.5.0",
"shrink-string": "^3.0.9",
"socket.io": "^4.1.3",
"socket.io-client": "^4.1.3",
"style-loader": "^3.2.1",
"styled-components": "^4.3.2",
"webpack": "^5.24.2",
"webpack-cli": "^4.5.0"
},
"devDependencies": {
"nodemon": "^2.0.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anthonysgro/knight-chess-3.git"
},
"bugs": {
"url": "https://github.com/anthonysgro/knight-chess-3/issues"
},
"homepage": "https://github.com/anthonysgro/knight-chess-3#readme"
}