mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2024-11-10 17:04:49 +08:00
87073a3700
* Added min burst * no need to calculate burst on a timer * added a burst history and current burst trackers, added set and push functions, removed burst calculating in stats (should be done on word completion) * burst will not be calculated on every keypress * calculating burst and pushing to history on space setting start time on first keypress * verifying that burst history and input history are the same length * bursthistory typo added function to calculate burst speed and updated the pushing function to consider if the word was already completed once before * removed fail condition from timer * removed debug notification * added fail condition * rounding burst * making sure to load burst config * styling burst display * including burst in the result * renamed variable * removed burst from result screen, changed wording in settings page * reran npm i to regenerate package lock in version 2 * audit fix * gulp update * added two burst modes: flex and fixed * standardized some code * swapped classes * updated settings page min burst input updated min burst description * updated the setting sections with inputs to a new, better design Co-authored-by: Jack <bartnikjack@gmail.com>
52 lines
1.5 KiB
JSON
52 lines
1.5 KiB
JSON
{
|
|
"name": "monkeytype",
|
|
"version": "1.5.6",
|
|
"license": "GPL-3.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"postinstall": "cd functions && npm install",
|
|
"build": "npx gulp build",
|
|
"start:dev": "npm run build && concurrently --kill-others \"npx gulp watch\" \"firebase serve\"",
|
|
"deploy:live:hosting": "npm run build && firebase deploy -P monkey-type --only hosting",
|
|
"deploy:live:functions": "npm run build && firebase deploy -P monkey-type --only functions",
|
|
"deploy:live": "npm run build && firebase deploy -P live"
|
|
},
|
|
"engines": {
|
|
"node": "10"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.12.3",
|
|
"@babel/plugin-transform-runtime": "^7.12.1",
|
|
"@babel/preset-env": "^7.12.1",
|
|
"babel-eslint": "^10.1.0",
|
|
"babelify": "^10.0.0",
|
|
"browserify": "^17.0.0",
|
|
"concurrently": "^5.3.0",
|
|
"dart-sass": "^1.25.0",
|
|
"del": "^6.0.0",
|
|
"eslint": "^6.8.0",
|
|
"gulp": "^4.0.2",
|
|
"gulp-concat": "^2.6.1",
|
|
"gulp-eslint": "^6.0.0",
|
|
"gulp-sass": "^5.0.0",
|
|
"husky": "^4.3.0",
|
|
"prettier": "2.1.2",
|
|
"pretty-quick": "^3.1.0",
|
|
"vinyl-buffer": "^1.0.1",
|
|
"vinyl-paths": "^3.0.1",
|
|
"vinyl-source-stream": "^2.0.0"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "pretty-quick --staged"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime": "^7.12.5",
|
|
"chart.js": "^2.9.4",
|
|
"chartjs-plugin-annotation": "^0.5.7",
|
|
"chartjs-plugin-trendline": "^0.2.2",
|
|
"howler": "^2.2.1",
|
|
"tinycolor2": "^1.4.2"
|
|
}
|
|
}
|