forked from zengm-games/zengm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
160 lines (160 loc) · 5.82 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
{
"name": "gm-games",
"version": "5.1.0",
"description": "A single-player basketball simulation game. Make trades, set rosters, draft players, and try to build the next dynasty, all from within your web browser. The game is implemented entirely in client-side JavaScript, backed by IndexedDB.",
"homepage": "https://basketball-gm.com/",
"bugs": {
"url": "https://github.com/zengm-games/zengm/issues"
},
"author": "Jeremy Scheff <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/zengm-games/zengm.git"
},
"scripts": {
"start": "node tools/server.mjs",
"build": "node tools/build.mjs",
"deploy": "yarn run lint && yarn test && node tools/deploy.mjs",
"deploy-all": "yarn run lint && yarn test && node tools/deploy-all.mjs",
"start-watch": "concurrently --kill-others \"yarn run start\" \"yarn run watch\"",
"watch": "node tools/watch.js",
"lint": "concurrently --raw \"yarn run lint-js\" \"yarn run lint-ts\"",
"lint-js": "eslint \"*.{mjs,js,ts,tsx}\" \"public/*.js\" \"src/**/*.{mjs,js,ts,tsx}\" \"tools/**/*.{mjs,js,ts,tsx}\"",
"lint-ts": "node tools/pre-test.mjs && yarn run tsc",
"prettier": "prettier --write \"*.{mjs,js,json,scss,ts,tsx}\" \"public/**/*.{mjs,js,json,scss,ts,tsx}\" \"src/**/*.{mjs,js,json,scss,ts,tsx}\" \"tools/**/*.{mjs,js,json,scss,ts,tsx}\"",
"test": "node tools/pre-test.mjs && cross-env SPORT=basketball jest --testPathIgnorePatterns football && cross-env SPORT=football jest --testRegex \"football.*\\.test\\.[jt]sx?\"",
"test-e2e": "node tools/pre-test.mjs && karma start karma.conf.js",
"test-e2e-watch": "node tools/pre-test.mjs && karma start karma.conf.js --auto-watch --no-single-run",
"test-e2e-browserstack": "node tools/pre-test.mjs && karma start karma-browserstack.conf.js",
"postinstall": "patch-package",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,json,scss,ts,tsx}": "prettier --write"
},
"dependencies": {
"@bugsnag/browser": "^7.10.1",
"@bugsnag/plugin-react": "^7.10.0",
"@types/react-select": "^4.0.15",
"ajv": "^8.6.0",
"array-move": "^3.0.1",
"bootstrap": "^4.6.0",
"classnames": "^2.3.1",
"confetti-js": "^0.0.18",
"d3-axis": "^3.0.0",
"d3-dsv": "^3.0.1",
"d3-scale": "^4.0.0",
"d3-selection": "^3.0.0",
"d3-shape": "^3.0.1",
"dompurify": "^2.2.9",
"facesjs": "^3.5.0",
"framer-motion": "^4.1.17",
"html2canvas": "^1.0.0-rc.7",
"idb": "dumbmatter/idb#bbgm2",
"indexeddb-getall-shim": "^1.3.6",
"lodash-es": "^4.17.21",
"nanoevents": "^6.0.0",
"promise-worker-bi": "^4.0.2",
"react": "^17.0.2",
"react-addons-text-content": "^0.0.4",
"react-bootstrap": "^1.6.1",
"react-confirm": "^0.1.24",
"react-dom": "^17.0.2",
"react-select": "^4.3.1",
"react-sortable-hoc": "^2.0.0",
"roman-numerals": "^0.3.2",
"s-ago": "^2.2.0",
"workbox-core": "^6.1.5",
"workbox-google-analytics": "^6.1.5",
"workbox-precaching": "^6.1.5",
"workbox-routing": "^6.1.5",
"workbox-window": "^6.1.5",
"zustand": "^3.5.2"
},
"devDependencies": {
"@babel/core": "^7.14.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.14.5",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/plugin-syntax-typescript": "^7.14.5",
"@babel/plugin-transform-async-to-generator": "^7.14.5",
"@babel/plugin-transform-destructuring": "^7.14.5",
"@babel/plugin-transform-exponentiation-operator": "^7.14.5",
"@babel/plugin-transform-for-of": "^7.14.5",
"@babel/plugin-transform-modules-commonjs": "^7.14.5",
"@babel/plugin-transform-parameters": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "19.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^2.4.2",
"@types/d3-axis": "^2.1.0",
"@types/d3-dsv": "^2.0.1",
"@types/d3-scale": "^3.3.0",
"@types/d3-selection": "^2.0.0",
"@types/d3-shape": "^2.1.0",
"@types/dompurify": "^2.2.2",
"@types/gtag.js": "^0.0.5",
"@types/jest": "^26.0.23",
"@types/lodash-es": "^4.17.4",
"@types/react": "^17.0.11",
"@types/react-confirm": "^0.1.4",
"@types/react-dom": "^17.0.8",
"@types/roman-numerals": "^0.3.0",
"@types/stripe-checkout": "^1.0.3",
"@types/stripe-v2": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"cheerio": "^1.0.0-rc.10",
"chokidar": "^3.5.1",
"clean-css": "^5.1.2",
"cloudflare": "^2.7.0",
"concurrently": "^6.2.0",
"conditional-type-checks": "^1.0.5",
"cross-env": "^7.0.3",
"esbuild": "^0.12.9",
"esbuild-plugin-alias": "^0.1.2",
"eslint": "^7.29.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"fake-indexeddb": "^3.1.2",
"flag-icon-css": "^3.5.0",
"fs-extra": "^10.0.0",
"html-minifier-terser": "^5.1.1",
"husky": "^6.0.0",
"import-jsx": "^4.0.0",
"ink": "^3.0.8",
"ink-spinner": "^4.0.2",
"jest": "^27.0.4",
"karma": "^6.3.3",
"karma-browserstack-launcher": "^1.6.0",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.1.1",
"karma-mocha": "^2.0.1",
"karma-rollup-preprocessor": "^7.0.7",
"karma-source-map-support": "^1.4.0",
"lint-staged": "^11.0.0",
"log-symbols": "^4.1.0",
"mocha": "^9.0.1",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.3.1",
"prop-types": "^15.7.2",
"replace": "^1.2.1",
"rollup": "^2.52.1",
"rollup-plugin-blacklist": "^1.0.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^5.4.1",
"sass": "1.32.*",
"typescript": "^4.3.4",
"workbox-build": "^6.1.5"
},
"private": true
}