This repository was archived by the owner on Jan 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.35 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.35 KB
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
{
"name": "@insamee-app/components",
"version": "0.1.23",
"description": "Components lib to create others insamee-app plateformes !",
"scripts": {
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o docs-build",
"lint:js": "eslint --ext \".js,.vue\" --ignore-path .gitignore .",
"lint": "pnpm lint:js",
"format": "prettier --write .",
"commitlint": "commitlint",
"prepare": "husky install",
"commit": "cz",
"release": "np --no-cleanup --no-tests",
"chromatic": "npx chromatic --project-token=dc55a493e07a"
},
"files": [
"src/mixins",
"src/directives",
"src/components/atoms/icons",
"src/components/atoms/graphics",
"src/components/atoms",
"src/components/molecules",
"src/components/organisms",
"src/components/templates",
"LICENSE",
"nuxt"
],
"author": "Estéban S",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/eslint-parser": "^7.14.5",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@nuxtjs/eslint-config": "^6.0.1",
"@nuxtjs/eslint-module": "^3.0.2",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/addon-links": "^6.2.9",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/vue": "^6.2.9",
"@tailwindcss/jit": "^0.1.18",
"ansi-regex": "^6.0.0",
"autoprefixer": "^10.2.6",
"babel-loader": "^8.2.2",
"babel-preset-vue": "^2.0.2",
"chromatic": "^5.9.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^7.11.1",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"np": "^7.5.0",
"postcss": "^8",
"prettier": "^2.3.1",
"tailwindcss": "^2.2.2",
"vue": "^2.6.14",
"vue-loader": "^15.9.7",
"vue-template-compiler": "^2.6.14"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.vue": [
"pnpm lint"
],
"*.js": [
"pnpm lint"
]
},
"dependencies": {
"@linusborg/vue-simple-portal": "^0.1.5",
"focus-trap": "^6.7.1",
"focus-trap-vue": "^1.1.1",
"v-scroll-lock": "^1.3.1",
"vuelidate": "^0.7.6"
}
}