-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.28 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.28 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
{
"name": "sockscode-server",
"version": "1.0.0-alpha",
"description": "sockscode server",
"main": "app.js",
"scripts": {
"postinstall": "cd ./node_modules/vscode-icons && yarn && yarn pinstall && yarn build && cpr ./out/src/icons.json ../../src/public/icons/icons.json -o && cpr ./icons ../../src/static/icons -o",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf ./dist && webpack --config config/webpack.prod.config.js",
"start": "node app.js",
"start-dev": "node webpack-dev-server"
},
"engines": {
"node": ">=6.9.1"
},
"author": "Shyyko Serhiy <shyyko.serhiy@gmail.com>",
"license": "MIT",
"dependencies": {
"immutable": "^3.8.1",
"koa": "^1.2.4",
"koa-static": "^2.0.0",
"node-uuid": "^1.4.7",
"socket.io": "^1.7.2",
"socket.io-client": "^1.7.2"
},
"devDependencies": {
"@types/lru-cache": "^4.1.0",
"@types/material-ui": "^0.18.0",
"@types/react": "^16.0.2",
"@types/react-css-modules": "^3.7.5",
"@types/react-dnd": "^2.0.34",
"@types/react-dom": "^15.5.3",
"@types/react-event-listener": "^0.4.4",
"@types/react-hot-loader": "^3.0.0",
"@types/react-redux": "^4.4.35",
"@types/react-tap-event-plugin": "^0.0.30",
"@types/node": "^8.0.53",
"@types/recompose": "^0.22.0",
"@types/redux": "^3.6.0",
"@types/socket.io": "^1.4.27",
"@types/socket.io-client": "^1.4.29",
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"copy-webpack-plugin": "^4.0.1",
"cpr": "^2.2.0",
"css-loader": "^0.26.1",
"json-loader": "^0.5.4",
"lru-cache": "^4.1.1",
"material-ui": "^0.19.0",
"monaco-editor": "^0.10.0",
"react": "^15.6.1",
"react-css-modules": "^4.1.0",
"react-dnd": "^2.5.4",
"react-dom": "^15.6.1",
"react-hot-loader": "3.0.0-beta.6",
"react-redux": "^5.0.2",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.6.0",
"rimraf": "^2.6.1",
"style-loader": "^0.13.1",
"ts-loader": "^3.1.1",
"typescript": "^2.6.1",
"vscode-icons": "https://github.com/sockscode/vscode-icons.git",
"webpack": "^2.6.0",
"webpack-dev-server": "^1.16.2",
"webpack-notifier": "^1.5.0"
}
}