-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.86 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
{
"name": "cssnames",
"version": "1.0.0",
"description": "A web app to get css color names similar to a given color",
"main": "main.ts",
"author": "Michael Große",
"license": "AGPL-3.0-or-later",
"dependencies": {
"colorjs.io": "^0.4.0",
"vue": "^3.2.41"
},
"devDependencies": {
"@babel/preset-env": "^7.19.4",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/jest": "^29.2.0",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"@vitejs/plugin-vue": "^3.1.2",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.2",
"@vue/test-utils": "^2.1.0",
"@vue/vue3-jest": "^29.1.1",
"babel-jest": "^29.2.1",
"eslint": "^8.25.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.6.0",
"husky": "^8.0.1",
"jest": "^29.2.1",
"jest-environment-jsdom": "^29.2.1",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"pinst": "^3.0.0",
"prettier": "^2.7.1",
"sass": "^1.55.0",
"sass-loader": "^13.1.0",
"ts-jest": "^29.0.3",
"typescript": "~4.8.4",
"vite": "^3.1.8",
"vue-tsc": "^1.0.8"
},
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"serve": "vite preview",
"test": "npm-run-all test:*",
"test:lint": "eslint --ext .js,.ts,vue --ignore-path .gitignore --report-unused-disable-directives .",
"test:unit": "jest",
"test:types": "vue-tsc --noEmit",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"lint-staged": {
"*.ts": [
"eslint --fix"
],
"*.js": [
"eslint --fix"
],
"*.vue": [
"eslint --fix"
],
"*.yml": [
"prettier --write"
],
"*.md": [
"prettier --write"
]
}
}