-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.44 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
{
"name": "tic-tac-toe",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start-node": "nodemon src/server/server.js",
"start-react": "webpack-dev-server --mode development --open",
"build": "webpack --mode production",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sariroti/ttt.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sariroti/ttt/issues"
},
"homepage": "https://github.com/sariroti/ttt#readme",
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.1.0",
"bootstrap": "^4.1.3",
"express": "^4.16.4",
"jquery": "^3.3.1",
"lodash": "^4.17.11",
"nodemon": "^1.18.6",
"open-iconic": "^1.1.1",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"reactstrap": "^6.5.0",
"socket.io": "^2.1.1",
"socket.io-client": "^2.1.1",
"url-loader": "^1.1.2"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.4",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"css-loader": "^1.0.1",
"html-webpack-plugin": "^3.2.0",
"react-router-dom": "^4.3.1",
"style-loader": "^0.23.1",
"webpack": "^4.26.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
}
}