-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.98 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "proof",
"version": "0.1.0",
"description": "Proof of concept",
"main": "src/scripts/index.tsx",
"scripts": {
"start": "npm run server",
"clean": "del 'dist/*' '!dist/*-manifest.json' '!dist/vendor.dll.*'",
"postinstall": "npm run tcm",
"setup": "npm run build:dll",
"build:dll": "webpack --config webpack.dll.config.js",
"build": "NODE_ENV=production webpack --env.production",
"server": "node server.js",
"tcm": "tcm src/scripts -o generated/css",
"tcm:watch": "npm run tcm -- -w"
},
"keywords": [
"react-virtualized",
"grid",
"react",
"redux"
],
"author": "Vasiliy Yorkin <[email protected]>",
"license": "WTFPL",
"dependencies": {
"@types/classnames": "0.0.32",
"@types/ramda": "0.0.7",
"@types/react": "^15.0.22",
"@types/react-dom": "^15.5.0",
"@types/react-hot-loader": "^3.0.1",
"@types/react-redux": "^4.4.39",
"@types/react-virtualized": "^9.5.0",
"@types/recompose": "^0.22.0",
"@types/redux-logger": "^3.0.0",
"@types/reselect": "^2.2.0",
"@types/socket.io-client": "^1.4.29",
"@types/webpack-env": "^1.13.0",
"classnames": "^2.2.5",
"ramda": "^0.23.0",
"re-reselect": "^0.4.0",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-redux": "^5.0.4",
"react-virtualized": "^9.7.3",
"recompose": "^0.23.1",
"redux": "^3.6.0",
"redux-act": "^1.2.0",
"redux-devtools-extension": "^2.13.0",
"redux-logger": "^3.0.1",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.0",
"reselect-map": "^1.0.1",
"sanitize.css": "^5.0.0",
"socket.io": "^1.7.3",
"socket.io-client": "^1.7.3",
"tslib": "^1.6.1",
"typescript": "^2.3.0-dev.20170425"
},
"devDependencies": {
"@types/why-did-you-update": "0.0.6",
"add-asset-html-webpack-plugin": "^2.0.1",
"chalk": "^1.1.3",
"css-loader": "^0.28.0",
"cssnano": "^3.10.0",
"del-cli": "^0.2.1",
"express": "^4.15.2",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"html-webpack-plugin": "^2.28.0",
"postcss-assets": "^4.1.0",
"postcss-browser-reporter": "^0.5.0",
"postcss-cssnext": "^2.10.0",
"postcss-font-magician": "^1.6.1",
"postcss-import": "^9.1.0",
"postcss-loader": "^1.3.3",
"postcss-position": "^0.5.0",
"postcss-reporter": "^3.0.0",
"postcss-size": "^1.1.1",
"postcss-svg": "^1.0.6",
"progress-bar-webpack-plugin": "^1.9.3",
"pug": "^2.0.0-beta.12",
"pug-loader": "^2.3.0",
"raw-loader": "^0.5.1",
"react-hot-loader": "^3.0.0-beta.6",
"source-map-loader": "^0.2.1",
"style-loader": "^0.16.1",
"ts-loader": "^2.0.3",
"tslint": "^5.2.0",
"tslint-config-airbnb": "^5.0.1",
"typed-css-modules": "vyorkin-forks/typed-css-modules",
"url-loader": "^0.5.8",
"webpack": "^2.4.1",
"webpack-combine-loaders": "^2.0.3",
"webpack-dev-middleware": "^1.10.2",
"webpack-hot-middleware": "^2.18.0",
"why-did-you-update": "0.0.8"
}
}