-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
96 lines (96 loc) · 3.51 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@bethinkpl/design-system",
"version": "26.3.0",
"description": "Bethink universe design-system",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/bethinkpl/design-system.git"
},
"author": "[email protected]",
"main": "./dist/design-system.umd.cjs",
"type": "module",
"typings": "./dist/lib/js/index.d.ts",
"license": "UNLICENSED",
"engines": {
"yarn": "^1.22.1",
"node": "^16.13.0 || ^18.17.0 || ^20.9.0"
},
"scripts": {
"build": "vite build",
"dev": "storybook dev -p 6006",
"lint": "yarn lint:scripts && yarn lint:styles",
"lint:fix": "yarn lint:scripts:fix && yarn lint:styles:fix",
"lint:scripts": "eslint --max-warnings 0 --cache 'lib/js/**/*.{js,vue,ts}'",
"lint:scripts:fix": "eslint 'lib/js/**/*.{js,vue,ts}' --fix --cache",
"lint:styles": "stylelint 'lib/**/*.{vue,scss}' --cache",
"lint:styles:fix": "stylelint 'lib/**/*.{vue,scss}' --fix",
"format:check": "prettier --check 'lib/**/*.{js,ts,vue,scss}' && prettier --check ./*.js",
"format:fix": "prettier --write 'lib/**/*.{js,ts,vue,scss}' && prettier --write ./*.js",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build -c .storybook -o public/storybook",
"test": "jest",
"ts:check": "tsc --noEmit",
"synchronizeColors": "npx ts-node tools/importers/SynchronizeColorsTokens.ts",
"synchronizeTypography": "npx ts-node tools/importers/SynchronizeTypographyTokens.ts"
},
"devDependencies": {
"@fortawesome/fontawesome-svg-core": "6.4.2",
"@fortawesome/free-brands-svg-icons": "6.4.2",
"@fortawesome/pro-duotone-svg-icons": "6.4.2",
"@fortawesome/pro-light-svg-icons": "6.4.2",
"@fortawesome/pro-regular-svg-icons": "6.4.2",
"@fortawesome/pro-solid-svg-icons": "6.4.2",
"@fortawesome/vue-fontawesome": "3.0.3",
"@storybook/addon-actions": "^8.3.4",
"@storybook/addon-controls": "^8.3.4",
"@storybook/addon-designs": "^8.0.3",
"@storybook/addon-docs": "^8.3.4",
"@storybook/addon-storysource": "^8.3.4",
"@storybook/addon-viewport": "^8.3.4",
"@storybook/vue3": "^8.3.4",
"@storybook/vue3-vite": "^8.3.4",
"@types/jest": "^29.5.12",
"@types/node": "^17.0.9",
"@typescript-eslint/eslint-plugin": "5.18.0",
"@typescript-eslint/parser": "5.18.0",
"@vitejs/plugin-vue": "^5.1.4",
"@vue/test-utils": "2.2.7",
"@vue/vue3-jest": "29.2.2",
"axios": "^0.26.0",
"dotenv": "16.0.3",
"eslint": "8.25.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-storybook": "0.8.0",
"eslint-plugin-vue": "9.6.0",
"flatpickr": "^4.6.13",
"jest": "^29.4.0",
"jest-environment-jsdom": "^29.4.0",
"jsdom": "^19.0.0",
"jsdom-global": "^3.0.2",
"postcss": "^8.4.47",
"postcss-html": "^1.7.0",
"postcss-prefix-selector": "^1.9.0",
"prettier": "2.7.1",
"sass": "^1.28.0",
"storybook": "^8.3.4",
"stylelint": "14.12.0",
"stylelint-config-standard-scss": "6.1.0",
"stylelint-config-standard-vue": "1.0.0",
"stylelint-order": "6.0.3",
"ts-jest": "29.0.5",
"ts-node": "^10.9.1",
"typescript": "4.6.4",
"vite": "^5.4.9",
"vite-plugin-checker": "^0.7.0",
"vite-plugin-css-injected-by-js": "^3.5.1",
"vite-plugin-dts": "^3.9.1",
"vite-svg-loader": "^5.1.0",
"vue": "3.5.12",
"vue-popperjs": "github:bethinkpl/vue-popper#03c7912c4729386743b0cca8f39b35448cc3db7f"
},
"dependencies": {
"@primevue/themes": "4.0.0-rc.3",
"primevue": "4.0.0-rc.3"
}
}