-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.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
{
"name": "vue-backpropagation-exercise",
"version": "0.1.6",
"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",
"detect-browser": "^5.0.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"
]
}