-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 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
46
47
48
{
"name": "connectfour",
"version": "1.0.0",
"description": "A simple connect four app using TypeScript Socket.io React and Redux",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compiler": "tsc -w",
"start": "nodemon ./dist/server",
"build": "webpack -w"
},
"keywords": [
"TypeScript",
"Sockets",
"React",
"Redux"
],
"author": "DDRosario",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.16.0",
"@types/react": "^16.7.20",
"@types/react-dom": "^16.0.11",
"@types/socket.io": "^2.1.2",
"@types/socket.io-client": "^1.4.32",
"awesome-typescript-loader": "^5.2.1",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-redux": "^6.0.0",
"source-map-loader": "^0.2.4",
"typescript": "^3.2.2",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1"
},
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"nodemon": "^1.18.9",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0"
}
}