-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.58 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
{
"name": "sudoku-solver",
"version": "0.0.2",
"description": "Javascript (TypeScript) sudoku solver in a nice vue frontend.",
"scripts": {
"dev": "vite",
"build": "vite build && cp .htaccess dist/.htaccess",
"serve": "vite preview",
"lint": "eslint --ext .ts,vue --ignore-path .gitignore ."
},
"keywords": [
"vue",
"sodku",
"html",
"solver",
"backtracking",
"algorithm"
],
"repository": {
"type": "git",
"url": "https://github.com/EdwardKerckhofZoneDev/vue-sodoku-solver.git"
},
"bugs": {
"url": "https://github.com/EdwardKerckhofZoneDev/vue-sodoku-solver/issues"
},
"homepage": "https://github.com/EdwardKerckhofZoneDev/vue-sodoku-solver#readme",
"private": false,
"license": "MIT",
"dependencies": {
"vue": "^3.0.5"
},
"devDependencies": {
"@types/node": "^14.14.22",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"@vitejs/plugin-vue": "^1.1.2",
"@vue/compiler-sfc": "^3.0.5",
"@vue/eslint-config-typescript": "^7.0.0",
"@vuedx/typecheck": "^0.6.0",
"@vuedx/typescript-plugin-vue": "^0.6.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-vue": "^7.5.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.2.1",
"sass": "^1.32.5",
"typescript": "^4.1.3",
"vite": "^2.0.0-beta.50"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,vue}": "eslint --fix",
"*": "prettier -w -u"
}
}