-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
113 lines (113 loc) · 3.37 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "townsquare-client",
"version": "1.0.0",
"description": "The client code for Doomtown Online, a browser based implementation of the Doomtown card game",
"main": "index.jsx",
"scripts": {
"lint": "eslint . --ext=js --ext=jsx",
"build": "webpack --config webpack.production.js --color",
"start": "webpack serve --config webpack.dev.js --color",
"test": "jest --colors"
},
"jest": {
"setupFilesAfterEnv": [
"./setupTests.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/townteki/townsquare-client.git"
},
"keywords": [
"townsquare",
"Doomtown",
"townteki"
],
"author": "Milan Melisik <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/townteki/townsquare-client/issues"
},
"homepage": "https://github.com/townteki/townsquare-client#readme",
"devDependencies": {
"@octopusdeploy/octopackjs": "^0.2.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.3",
"browserstack-local": "^1.4.8",
"chai": "^4.3.4",
"classnames": "^2.3.1",
"css-loader": "^3.6.0",
"cucumber": "^4.2.1",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.27.0",
"event-source-polyfill": "0.0.12",
"faker": "^4.1.0",
"file-loader": "^6.2.0",
"jquery": "^3.6.0",
"jquery-migrate": "=3.0.0",
"jquery-nearest": "^1.4.0",
"jquery-validation": "^1.19.3",
"jquery-validation-unobtrusive": "^3.2.12",
"less": "^3.13.1",
"less-loader": "^10.2.0",
"moment": "^2.29.1",
"node-noop": "^1.0.0",
"path-to-regexp": "^2.4.0",
"query-string": "^5.1.1",
"raven-for-redux": "^1.4.0",
"raven-js": "^3.27.2",
"react": "^16.14.0",
"react-async-script": "^0.9.1",
"react-bootstrap-slider": "^2.2.3",
"react-bootstrap-typeahead": "^3.4.7",
"react-dnd": "^2.6.0",
"react-dnd-touch-backend": "^0.4.0",
"react-dom": "^16.14.0",
"react-draggable": "^3.0.3",
"react-google-recaptcha": "^0.11.1",
"react-hot-loader": "^4.13.0",
"react-redux": "^5.1.2",
"react-redux-toastr": "^7.6.10",
"react-transition-group": "^1.2.1",
"redux": "^4.1.2",
"redux-thunk": "^2.4.0",
"sass": "^1.55.0",
"sass-loader": "^13.1.0",
"selenium-webdriver": "^4.0.0",
"socket.io-client": "^4.5.3",
"style-loader": "^0.21.0",
"underscore": "^1.13.1",
"url-loader": "^4.1.1",
"webpack": "^5.76.0",
"webpack-dev-server": "^4.11.1",
"webpack-hot-middleware": "^2.25.1",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"ajv": "^8.11.0",
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-object-rest-spread": "^7.16.0",
"@babel/plugin-transform-object-assign": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@widgetbot/react-embed": "^1.5.0",
"babel-jest": "^24.9.0",
"bootstrap": "^3.4.1",
"clean-webpack-plugin": "^3.0.0",
"core-js": "^3.19.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.2.2",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^2.6.1",
"pug": "^3.0.1",
"pug-loader": "^2.4.0",
"react-test-renderer": "^16.14.0",
"redux-loop": "^4.5.4",
"regenerator-runtime": "^0.13.9",
"townsquare-deck-helper": "^1.0.9",
"webpack-cli": "^4.10.0",
"webpack-dev-middleware": "^3.7.3"
}
}