forked from pokeclicker/pokeclicker
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
118,841 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../assets |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../libs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
{ | ||
"name": "pokeclicker", | ||
"version": "0.10.23", | ||
"description": "PokéClicker repository", | ||
"main": "index.js", | ||
"scripts": { | ||
"start": "cross-env NODE_ENV=development gulp", | ||
"build": "cross-env NODE_ENV=development gulp build", | ||
"test": "npm-run-all --continue-on-error test-scripts eslint stylelint", | ||
"test-scripts": "gulp scripts && npm run vitest-nocoverage", | ||
"vitest": "vitest --run", | ||
"vitest-nocoverage": "vitest --run --coverage false", | ||
"eslint": "eslint --ext ts ./src/scripts ./src/modules", | ||
"eslint-fix": "eslint --ext ts --fix ./src/scripts ./src/modules", | ||
"stylelint": "stylelint \"./src/**/*.less\" --cache", | ||
"stylelint-fix": "npm run stylelint -- --fix", | ||
"website": "npm run tl:update && npm test && cross-env NODE_ENV=production gulp website", | ||
"publish": "npm test && node publish.js", | ||
"tl:init": "git submodule update --init", | ||
"tl:update": "git submodule update --remote", | ||
"clean": "npm ci && npm run tl:init" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/pokeclicker/pokeclicker.git" | ||
}, | ||
"babel": { | ||
"presets": [ | ||
"env" | ||
] | ||
}, | ||
"author": "RedSparr0w", | ||
"license": "ISC", | ||
"bugs": { | ||
"url": "https://github.com/pokeclicker/pokeclicker/issues" | ||
}, | ||
"homepage": "https://github.com/pokeclicker/pokeclicker#readme", | ||
"devDependencies": { | ||
"@types/bootstrap": "^4.3.1", | ||
"@types/bootstrap-notify": "^3.1.34", | ||
"@types/intro.js": "^2.4.7", | ||
"@types/jquery": "^3.5.16", | ||
"@types/knockout": "^3.4.66", | ||
"@types/sortablejs": "^1.10.5", | ||
"@typescript-eslint/eslint-plugin": "^5.50.0", | ||
"@typescript-eslint/parser": "^5.50.0", | ||
"@vitest/coverage-v8": "^2.1.1", | ||
"babel-core": "^6.26.3", | ||
"babel-preset-env": "^1.7.0", | ||
"babel-register": "^6.26.0", | ||
"bootstrap-notify": "^3.1.3", | ||
"browser-sync": "^2.28.3", | ||
"cross-env": "^7.0.2", | ||
"del": "^5.1.0", | ||
"es6-promise": "^4.2.8", | ||
"eslint": "^7.32.0", | ||
"eslint-config-airbnb-typescript": "^17.0.0", | ||
"eslint-plugin-import": "^2.22.1", | ||
"gh-pages": "^4.0.0", | ||
"gulp": "^4.0.2", | ||
"gulp-autoprefixer": "^7.0.1", | ||
"gulp-changed": "^4.0.2", | ||
"gulp-clean": "^0.4.0", | ||
"gulp-concat": "^2.6.0", | ||
"gulp-connect": "^5.7.0", | ||
"gulp-ejs": "^5.1.0", | ||
"gulp-file-include": "^2.2.2", | ||
"gulp-filter": "^6.0.0", | ||
"gulp-html-import": "^0.0.2", | ||
"gulp-less": "^4.0.1", | ||
"gulp-minify-css": "^1.2.1", | ||
"gulp-minify-html": "^1.0.4", | ||
"gulp-plumber": "^1.2.1", | ||
"gulp-rename": "^2.0.0", | ||
"gulp-replace": "^1.0.0", | ||
"gulp-size": "^3.0.0", | ||
"gulp-sourcemaps": "^2.6.5", | ||
"gulp-stream-to-promise": "^0.1.0", | ||
"gulp-strip-debug": "^3.0.0", | ||
"gulp-typescript": "^5.0.1", | ||
"gulp-util": "^3.0.7", | ||
"husky": "^4.3.8", | ||
"jsdom": "^25.0.0", | ||
"natives": "^1.1.6", | ||
"npm-run-all2": "^6.2.0", | ||
"postcss-less": "^6.0.0", | ||
"stylelint": "^15.10.1", | ||
"stylelint-config-standard-less": "^1.0.0", | ||
"ts-loader": "^8.0.4", | ||
"ts-node": "^10.9.1", | ||
"typescript": "^4.9.5", | ||
"vitest": "^2.1.1", | ||
"webpack": "^5.76.0", | ||
"webpack-cli": "^5.0.1", | ||
"webpack-stream": "^6.1.0" | ||
}, | ||
"dependencies": { | ||
"bootstrap": "^4.5.3", | ||
"i18next": "^21.9.2", | ||
"i18next-browser-languagedetector": "^6.1.5", | ||
"i18next-chained-backend": "^3.1.0", | ||
"i18next-http-backend": "^1.4.4", | ||
"intro.js": "^2.9.3", | ||
"jquery": "^3.5.1", | ||
"knockout": "^3.5.1", | ||
"popper.js": "^1.16.0", | ||
"sortablejs": "^1.10.2" | ||
} | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.