-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.79 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
{
"name": "estimate-calc",
"description": "A base for tools to help estimating projects",
"private": "true",
"scripts": {
"test": "npx karma start",
"build": "npx webpack --mode production",
"lint": "npx eslint src",
"lint-fix": "npx eslint src --fix",
"start": "npx http-server dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/and3k5/estimate-calc.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/and3k5/estimate-calc/issues"
},
"homepage": "https://github.com/and3k5/estimate-calc#readme",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-export-default-from": "^7.12.1",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@vue/compiler-sfc": "^3.1.0",
"@vue/eslint-config-typescript": "^11.0.2",
"babel-loader": "^8.2.2",
"css-loader": "^6.7.3",
"electron": "^22.0.0",
"eslint": "^8.15.0",
"eslint-plugin-typescript": "^0.14.0",
"eslint-plugin-unused-imports": "^2.0.0",
"eslint-plugin-vue": "^9.11.0",
"html-webpack-plugin": "^5.5.1",
"http-server": "^14.1.1",
"jasmine": "^3.6.3",
"karma": "^6.3.19",
"karma-chrome-launcher": "^3.1.1",
"karma-cli": "^2.0.0",
"karma-jasmine": "^5.0.0",
"karma-webpack": "^5.0.0",
"puppeteer": "^19.2.2",
"sass": "^1.62.0",
"sass-loader": "^13.2.2",
"ts-loader": "^9.3.0",
"typescript": "^4.6.4",
"vue-loader": "^16.8.3",
"vue-style-loader": "^4.1.3",
"webpack": "^5.76.0",
"webpack-cli": "^4.3.1"
},
"dependencies": {
"@material/button": "^14.0.0",
"@material/layout-grid": "^14.0.0",
"@material/list": "^14.0.0",
"@material/menu": "^14.0.0",
"@material/textfield": "^14.0.0",
"@vue/compat": "^3.1.0",
"vue": "^3.1.0"
}
}