-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·62 lines (62 loc) · 2.08 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
{
"name": "sockscode-office",
"version": "0.0.1",
"description": "sockscode office add in",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node -e \"var fs = require('fs-extra'); fs.removeSync('./dist');\" && webpack --config config/webpack.prod.config.js",
"start": "node app.js",
"start-dev": "node webpack-dev-server",
"postinstall": "node -e \"var fs = require('fs-extra'); fs.removeSync('./node_modules/office-ui-fabric-react/node_modules'); fs.removeSync('./node_modules/@uifabric/utilities/node_modules');\" #we need this beacuse these repos has old @types definitions for react"
},
"engines": {
"node": "6.9.1"
},
"author": "Shyyko Serhiy <[email protected]>",
"license": "MIT",
"dependencies": {
"autobind-decorator": "^1.3.4",
"babel-polyfill": "^6.22.0",
"koa": "^1.2.4",
"koa-static": "^2.0.0",
"node-uuid": "^1.4.7",
"office-ui-fabric-react": "^1.2.2",
"react": "^15.4.2",
"react-css-modules": "^4.1.0",
"react-dom": "^15.4.2",
"react-redux": "^5.0.2",
"redux": "^3.6.0",
"socket.io": "^1.7.2",
"socket.io-client": "^1.7.2",
"webpack-strip": "^0.1.0",
"xml2js": "^0.4.17"
},
"devDependencies": {
"@types/autobind-decorator": "^1.3.2",
"@types/react": "^15.0.0",
"@types/react-css-modules": "^3.7.5",
"@types/react-dom": "^0.14.20",
"@types/react-hot-loader": "^3.0.0",
"@types/react-redux": "^4.4.35",
"@types/redux": "^3.6.0",
"@types/socket.io": "^1.4.27",
"@types/socket.io-client": "^1.4.29",
"@types/xml2js": "^0.0.32",
"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",
"css-loader": "^0.26.1",
"fs-extra": "^2.0.0",
"react-hot-loader": "3.0.0-beta.6",
"style-loader": "^0.13.1",
"ts-loader": "^1.3.3",
"typescript": "next",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2",
"webpack-notifier": "^1.5.0"
}
}