-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 4.22 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 4.22 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"private": true,
"version": "0.1.0",
"scripts": {
"---Linting---": "",
"lint": "yarn ts-check && yarn lint:js && yarn lint:ts",
"lint:js": "eslint . --ext ts,tsx",
"lint:ts": "tslint -t stylish -p tsconfig.json \"{src,typings}/**/*.{ts,tsx}\"",
"ts-check": "tsc --pretty --noEmit",
"---Testing---": "",
"test": "ava",
"---Development": "",
"dev:server": "ts-node -r tsconfig-paths/register --transpile-only src/server/index.ts",
"dev:webapp": "webpack-serve --config webpack.dev.config.js --open",
"---Build---": "",
"prebuild": "yarn clean",
"build": "yarn build:server && yarn build:configs && yarn build:webapp",
"build:configs": "ts-node --T -P tsconfig.server.json \"./scripts/build-configs.ts\"",
"build:webapp": "webpack --config webpack.prod.config.js --progress",
"build:server": "tsc -p tsconfig.server.json",
"---Utils": "",
"clean": "rimraf build/"
},
"dependencies": {
"@atlaskit/avatar": "14.1.8",
"@atlaskit/badge": "9.2.2",
"@atlaskit/banner": "7.0.13",
"@atlaskit/button": "10.1.2",
"@atlaskit/css-reset": "3.0.5",
"@atlaskit/icon": "16.0.3",
"@atlaskit/navigation-next": "4.3.0",
"@atlaskit/progress-tracker": "4.0.10",
"@atlaskit/radio": "0.4.7",
"@atlaskit/range": "0.1.3",
"@atlaskit/spinner": "9.0.13",
"@atlaskit/theme": "7.0.5",
"@feathersjs/authentication": "2.1.16",
"@feathersjs/authentication-client": "1.0.11",
"@feathersjs/authentication-jwt": "2.0.10",
"@feathersjs/authentication-oauth2": "1.3.1",
"@feathersjs/errors": "3.3.6",
"@feathersjs/express": "1.3.1",
"@feathersjs/feathers": "3.3.1",
"@feathersjs/socketio": "3.2.9",
"@feathersjs/socketio-client": "1.2.1",
"@reach/router": "1.2.1",
"axios": "0.18.0",
"config": "3.0.1",
"cookie-parser": "1.4.4",
"date-fns": "2.0.0-alpha.27",
"debug": "4.1.1",
"emoji-mart": "2.9.2",
"express": "4.16.4",
"feathers-hooks-common": "4.20.7",
"feathers-mongoose": "7.3.1",
"is-plain-object": "2.0.4",
"is-url": "1.2.4",
"is_js": "0.9.0",
"modern-normalize": "0.5.0",
"mongoose": "5.4.16",
"passport-oauth2": "1.4.0",
"passport-steam": "1.0.10",
"pretty-error": "2.1.1",
"react": "16.8.3",
"react-animate-height": "2.0.7",
"react-dom": "16.8.3",
"react-jss": "10.0.0-alpha.12",
"react-side-effect": "1.1.5",
"redux": "4.0.1",
"redux-devtools-extension": "2.13.8",
"redux-thunk": "2.3.0",
"reselect": "4.0.0",
"shallowequal": "1.1.0",
"sleep-promise": "8.0.1",
"socket.io-client": "2.2.0",
"steamcommunity": "3.39.0",
"steamid": "1.1.0",
"strip-ansi": "5.0.0",
"styled-components": "3.2.6",
"theming": "3.1.0",
"tsconfig-paths": "3.8.0"
},
"devDependencies": {
"@types/config": "^0.0.34",
"@types/cookie-parser": "^1.4.1",
"@types/emoji-mart": "^2.8.2",
"@types/express": "^4.16.1",
"@types/is-url": "^1.2.28",
"@types/mongoose": "^5.3.17",
"@types/node": "^11.9.6",
"@types/reach__router": "^1.2.3",
"@types/react-dom": "^16.8.2",
"@types/react-side-effect": "^1.1.1",
"@types/react-test-renderer": "^16.8.1",
"@types/shallowequal": "^1.1.1",
"@types/socket.io-client": "^1.4.32",
"@types/steamid": "^1.1.0",
"@types/styled-components": "^4.1.11",
"ava": "^1.2.1",
"connect-history-api-fallback": "^1.6.0",
"css-loader": "^2.1.0",
"csstype": "^2.6.2",
"eslint": "^5.13.0",
"eslint-config-henribeck": "^5.13.3",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"koa-connect": "^2.0.1",
"mini-css-extract-plugin": "^0.5.0",
"raf": "^3.4.1",
"react-test-renderer": "^16.8.2",
"rimraf": "^2.6.3",
"shelljs": "^0.8.3",
"sinon": "^7.2.4",
"ts-loader": "^5.3.3",
"ts-node": "^8.0.2",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"tslint": "^5.12.1",
"tslint-config-henribeck": "^5.12.0",
"typescript": "^3.3.3",
"url-loader": "^1.1.2",
"webpack": "^4.29.5",
"webpack-bundle-analyzer": "^3.0.4",
"webpack-command": "^0.4.2",
"webpack-merge": "^4.2.1",
"webpack-serve": "^2.0.3",
"webpack-serve-waitpage": "^1.0.2",
"workbox-webpack-plugin": "^4.0.0"
}
}