UNPKG

vue-backpropagation-exercise

Version:

Web based exercise about visually retracing the backpropagation steps performed when training neural nets.

107 lines (106 loc) 2.82 kB
{ "name": "vue-backpropagation-exercise", "version": "0.1.1", "description": "Web based exercise about visually retracing the backpropagation steps performed when training neural nets.", "private": false, "author": { "name": "into-ai" }, "repository": "https://github.com/into-ai/vue-backpropagation-exercise", "bugs": "https://github.com/into-ai/vue-backpropagation-exercise/issues", "keywords": [ "backpropagation", "mooc", "exercise", "learning", "vuejs", "vue-component" ], "license": "MIT", "files": [ "dist" ], "main": "dist/VueBackpropagationExercise.umd.js", "unpkg": "dist/VueBackpropagationExercise.umd.min.js", "scripts": { "serve": "vue-cli-service serve", "build": "vue-cli-service build", "build:npm": "vue-cli-service build --target lib --name VueBackpropagationExercise src/components/VueBackpropagationExercise.vue", "test:unit": "vue-cli-service test:unit", "lint": "vue-cli-service lint" }, "dependencies": { "@types/d3": "^5.7.2", "@types/d3-hierarchy": "^1.1.6", "core-js": "^3.6.4", "d3": "^5.15.0", "katex": "^0.11.1", "vue": "^2.6.11", "vue-class-component": "^7.2.2", "vue-property-decorator": "^8.3.0" }, "devDependencies": { "@types/chai": "^4.2.8", "@types/katex": "^0.11.0", "@types/mocha": "^5.2.4", "@typescript-eslint/eslint-plugin": "^2.18.0", "@typescript-eslint/parser": "^2.18.0", "@vue/cli-plugin-babel": "~4.2.0", "@vue/cli-plugin-eslint": "~4.2.0", "@vue/cli-plugin-typescript": "~4.2.0", "@vue/cli-plugin-unit-mocha": "~4.2.0", "@vue/cli-service": "~4.2.0", "@vue/eslint-config-prettier": "^6.0.0", "@vue/eslint-config-typescript": "^5.0.1", "@vue/test-utils": "1.0.0-beta.31", "chai": "^4.1.2", "eslint": "^6.7.2", "eslint-plugin-prettier": "^3.1.1", "eslint-plugin-vue": "^6.1.2", "husky": "^4.2.3", "node-sass": "^4.12.0", "prettier": "^1.19.1", "sass-loader": "^8.0.2", "typescript": "~3.7.5", "vue-template-compiler": "^2.6.11" }, "eslintConfig": { "root": true, "env": { "node": true }, "extends": [ "plugin:vue/essential", "eslint:recommended", "@vue/typescript/recommended", "@vue/prettier", "@vue/prettier/@typescript-eslint" ], "parserOptions": { "ecmaVersion": 2020 }, "rules": { "no-inner-declarations": "off" }, "overrides": [ { "files": [ "**/__tests__/*.{j,t}s?(x)", "**/tests/unit/**/*.spec.{j,t}s?(x)" ], "env": { "mocha": true } } ] }, "husky": { "hooks": { "pre-commit": "npm run lint" } }, "browserslist": [ "> 1%", "last 2 versions" ] }