-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.48 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.48 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "boxman",
"version": "1.0.0",
"description": "Box Man out of Body",
"main": "server.js",
"scripts": {
"start": "node signaling-server/index.js",
"dev": "concurrently \"npm run client:start\" \"npm run server:watch\"",
"client:build": "webpack --config webpack.prod.js",
"client:start": "webpack-dev-server --config webpack.dev.js",
"server:watch": "DEV=\"true\" nodemon signaling-server/index --watch signaling-server ",
"storybook": "start-storybook -p 9001 -c .storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davvidbaker/BoxMan.git"
},
"author": "David Baker",
"license": "MIT",
"bugs": {
"url": "https://github.com/davvidbaker/BoxMan/issues"
},
"homepage": "https://github.com/davvidbaker/BoxMan#readme",
"dependencies": {
"@babel/runtime": "^7.2.0",
"@reach/router": "^1.2.1",
"@storybook/react": "^4.1.4",
"d3": "^5.7.0",
"html-webpack-plugin": "^3.2.0",
"lodash": "^4.17.11",
"prop-types": "^15.6.2",
"react": "^16.7.0-alpha.2",
"react-dom": "^16.7.0-alpha.2",
"react-media": "^1.9.2",
"react-redux": "^6.0.0",
"redux": "^4.0.1",
"redux-saga": "^0.16.2",
"regenerator-runtime": "^0.13.1",
"simple-peer": "^9.2.0",
"styled-components": "^4.1.3",
"webpack-merge": "^4.1.5",
"webrtc-adapter": "^7.1.1",
"ws": "^6.1.2",
"xstate": "^4.2.3"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^4.1.4",
"@storybook/addon-options": "^4.1.4",
"@storybook/components": "^4.1.4",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"babel-plugin-styled-components": "^1.10.0",
"chalk": "^2.4.1",
"concurrently": "^4.1.0",
"css-loader": "^2.1.0",
"eslint": "^5.11.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-flowtype": "^3.2.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"file-loader": "^3.0.1",
"flow-bin": "^0.89.0",
"image-webpack-loader": "^4.6.0",
"ip": "^1.1.5",
"nodemon": "^1.18.6",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.1.0",
"webpack": "^4.28.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.14"
}
}