forked from kgilbert-cmu/basketball-gm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
147 lines (147 loc) · 5.78 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
{
"name": "basketball-gm",
"version": "4.0.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/dumbmatter/basketball-gm/issues"
},
"author": "Jeremy Scheff <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/dumbmatter/basketball-gm.git"
},
"scripts": {
"start": "node tools/server.js",
"build": "node tools/build.js && npm run build-js && npm run minify-js",
"start-watch": "concurrently --kill-others \"npm run start\" \"npm run watch-css\" \"npm run watch-js\"",
"watch": "concurrently --kill-others 'npm run watch-css' 'npm run watch-js'",
"watch-css": "node tools/watch-css.js",
"build-js": "node tools/build-js.js",
"minify-js": "node tools/minify-js.js",
"watch-js": "concurrently --raw \"npm run watch-js-ui\" \"npm run watch-js-worker\"",
"watch-js-ui": "watchify -d src/js/ui/index.js -o build/gen/ui.js -v",
"watch-js-worker": "watchify -d src/js/worker/index.js -o build/gen/worker.js -v",
"lint": "concurrently --raw \"npm run flow\" \"npm run lint-css\" \"npm run lint-js\"",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"lint-css": "stylelint 'src/css/*.*css'",
"lint-js": "eslint '*.js' 'src/js/**/*.js' 'tools/**/*.js'",
"lint-js-fix": "npm run lint-js -- --fix",
"test": "karma start karma.conf.js",
"test-watch": "karma start karma.conf.js --auto-watch --no-single-run",
"test-browserstack": "karma start karma-browserstack.conf.js",
"copy-mocha": "cp node_modules/mocha/mocha.css build/gen/mocha.css && cp node_modules/mocha/mocha.js build/gen/mocha.js",
"build-test": "npm run copy-mocha && browserify -d src/js/test/index.js -o build/gen/test.js",
"watch-test": "npm run copy-mocha && watchify -d src/js/test/index.js -o build/gen/test.js"
},
"dependencies": {
"backboard": "1.0.7",
"classnames": "2.2.5",
"dompurify": "0.8.5",
"facesjs": "1.0.1",
"indexeddb-getall-shim": "1.3.1",
"lodash.orderby": "4.6.0",
"object.entries": "1.0.4",
"object.values": "1.0.4",
"page": "1.7.1",
"promise-worker-bi": "2.2.0",
"react": "15.5.4",
"react-addons-text-content": "0.0.4",
"react-bootstrap": "0.30.8",
"react-dom": "15.5.4",
"react-overlays": "0.6.12",
"react-sortable-hoc": "dumbmatter/react-sortable-hoc#clonedNode-in-onSortStart",
"underscore": "1.8.3",
"url-search-params-polyfill": "1.1.0",
"whatwg-fetch": "2.0.3"
},
"devDependencies": {
"babel-eslint": "7.2.2",
"babel-plugin-check-es2015-constants": "6.22.0",
"babel-plugin-external-helpers": "6.22.0",
"babel-plugin-transform-async-to-generator": "6.24.1",
"babel-plugin-transform-es2015-arrow-functions": "6.22.0",
"babel-plugin-transform-es2015-block-scoped-functions": "6.22.0",
"babel-plugin-transform-es2015-block-scoping": "6.24.1",
"babel-plugin-transform-es2015-classes": "6.24.1",
"babel-plugin-transform-es2015-computed-properties": "6.24.1",
"babel-plugin-transform-es2015-destructuring": "6.23.0",
"babel-plugin-transform-es2015-for-of": "6.23.0",
"babel-plugin-transform-es2015-literals": "6.22.0",
"babel-plugin-transform-es2015-modules-commonjs": "6.24.1",
"babel-plugin-transform-es2015-object-super": "6.24.1",
"babel-plugin-transform-es2015-parameters": "6.24.1",
"babel-plugin-transform-es2015-shorthand-properties": "6.24.1",
"babel-plugin-transform-es2015-spread": "6.22.0",
"babel-plugin-transform-es2015-template-literals": "6.22.0",
"babel-plugin-transform-exponentiation-operator": "6.24.1",
"babel-plugin-transform-flow-strip-types": "6.22.0",
"babel-preset-react": "6.24.1",
"babelify": "7.3.0",
"blacklistify": "0.0.3",
"browserify": "14.3.0",
"cheerio": "0.20.0",
"chokidar": "1.6.1",
"clean-css": "4.0.12",
"concurrently": "3.4.0",
"envify": "4.0.0",
"eslint": "3.19.0",
"eslint-config-airbnb": "14.1.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "4.0.0",
"eslint-plugin-react": "6.10.3",
"exorcist": "0.4.0",
"flow-bin": "0.44.0",
"fs-extra": "2.1.2",
"karma": "1.6.0",
"karma-browserify": "5.1.1",
"karma-browserstack-launcher": "1.2.0",
"karma-chrome-launcher": "2.0.0",
"karma-firefox-launcher": "1.0.1",
"karma-mocha": "1.3.0",
"karma-mocha-reporter": "2.2.3",
"karma-source-map-support": "1.2.0",
"mocha": "3.2.0",
"node-sass": "4.5.2",
"replace": "0.3.0",
"stylelint": "7.10.1",
"stylelint-config-standard": "16.0.0",
"uglify-js": "mishoo/UglifyJS2#9e2290b29c86caf847e291cf120ab23bea40544c",
"watchify": "3.9.0"
},
"browserify": {
"transform": [
"babelify"
]
},
"babel": {
"presets": [
"react"
],
"plugins": [
"external-helpers",
"transform-flow-strip-types",
"transform-es2015-template-literals",
"transform-es2015-literals",
"transform-es2015-arrow-functions",
"transform-es2015-block-scoped-functions",
"transform-es2015-classes",
"transform-es2015-object-super",
"transform-es2015-shorthand-properties",
"transform-es2015-computed-properties",
"transform-es2015-for-of",
"check-es2015-constants",
"transform-es2015-spread",
"transform-es2015-parameters",
"transform-es2015-destructuring",
"transform-es2015-block-scoping",
"transform-es2015-modules-commonjs",
"transform-exponentiation-operator",
"transform-async-to-generator"
],
"ignore": [
"js/lib/html2canvas.js"
]
},
"private": true
}