-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.33 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
{
"name": "sudoku-helper",
"version": "0.1.3",
"description": "A very simple tool written in TypeScript with Vue.js to help solving Sukodus",
"keywords": [
"javascript",
"typescript",
"vue.js",
"sudoku"
],
"homepage": "https://github.com/ptandler/sudoku-helper/",
"bugs": "https://github.com/ptandler/sudoku-helper/issues",
"license": "MIT",
"author": {
"name": "Peter Tandler",
"url": "https://github.com/ptandler"
},
"repository": {
"type": "git",
"url": "https://github.com/ptandler/sudoku-helper.git"
},
"private": false,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@types/lodash": "^4.14.112",
"bootstrap": ">=4.1.2",
"bootstrap-vue": "^2.0.0-rc.11",
"lodash": "^4.17.21",
"register-service-worker": "^1.0.0",
"vue": "^2.5.16",
"vue-class-component": "^7.1.0",
"vue-property-decorator": "^8.2.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.0.0-rc.5",
"@vue/cli-plugin-pwa": "^3.0.0-rc.5",
"@vue/cli-plugin-typescript": "^3.0.0-rc.5",
"@vue/cli-service": "^3.0.0-rc.5",
"node-sass": "^4.13.1",
"sass-loader": "^7.0.1",
"typescript": "^3.5.3",
"vue-template-compiler": "^2.5.16",
"webpack": "^4.16.3"
}
}