-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
125 lines (125 loc) · 4.68 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "finpro",
"version": "1.0.3-beta",
"description": "Design System",
"main": "dist/finpro.js",
"module": "dist/finpro.js",
"types": "dist/finpro.d.ts",
"publishConfig": {
"access": "public"
},
"files": [
"dist/"
],
"repository": "github:FinTechSoftware/Finpro",
"author": {
"name": "FinTechSoftware",
"url": "https://github.com/FinTechSoftware"
},
"license": "MIT",
"scripts": {
"prestart": "npm run build",
"prepare": "husky install",
"start": "npm run storybook:dev",
"commit": "commit",
"analyze": "cem analyze",
"build": "del-cli dist/ && npm run analyze && npm run generate-react && tsc --emitDeclarationOnly && node generator/generate.js",
"build-storybook": "NODE_ENV=production build-storybook -o storybook-static",
"build-storybook-docs": "build-storybook --docs",
"serve": "node generator/generate.js --serve",
"storybook:dev": "start-storybook -p 1994",
"lint": "npm-run-all -s lint:*",
"lint:tsc": "tsc --noEmit",
"lint:eslint": "eslint .",
"lint:style": "stylelint src/**/*.css",
"format": "npm-run-all -s format:*",
"format:code": "eslint --fix ./src && prettier --write ./src",
"fix": "npm run format && npm run lint",
"chromatic": "npx chromatic --only-changed --project-token 14b660c71183 --force-rebuild",
"ci": "rm -rf node_modules && npm install --frozen-lockfile",
"clean": "npm-run-all -s clean:*",
"clean:dist": "rimraf dist",
"clean:modules": "rimraf node_modules",
"reset": "npm run clean && npm install",
"reboot": "npm run clean && npm install && npm start",
"pretest": "npm run build",
"test": "web-test-runner --coverage",
"test:dev": "web-test-runner --coverage --dev",
"test:component": "npm run test -- --group",
"test:watch": "web-test-runner --coverage --watch",
"test:debug": "web-test-runner --coverage --watch --debug",
"test:headless": "web-test-runner --coverage --watch --debug --headless",
"generate-react": "node generator/generate-react.js"
},
"keywords": [
"typescript",
"lit",
"finpro",
"financial ui",
"web-components"
],
"dependencies": {
"@floating-ui/dom": "^1.2.3",
"@fontsource/poppins": "^4.5.10",
"@lit-labs/react": "^1.1.0",
"@open-wc/form-control": "^0.5.1",
"@open-wc/form-helpers": "^0.2.1",
"element-internals-polyfill": "^1.2.3",
"lit": "^2.2.3",
"qr-creator": "^1.0.0"
},
"engines": {
"node": ">=16"
},
"devDependencies": {
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@commitlint/prompt-cli": "^16.2.4",
"@custom-elements-manifest/analyzer": "^0.6.3",
"@open-wc/testing": "^3.1.6",
"@rollup/plugin-replace": "^4.0.0",
"@storybook/addon-a11y": "6.5.9",
"@storybook/addon-actions": "6.5.9",
"@storybook/addon-essentials": "6.5.9",
"@storybook/addon-interactions": "^6.5.9",
"@storybook/addon-links": "6.5.9",
"@storybook/addon-storysource": "6.5.9",
"@storybook/addon-viewport": "^6.5.10",
"@storybook/jest": "^0.0.10",
"@storybook/testing-library": "^0.0.13",
"@storybook/web-components": "6.5.9",
"@types/estree": "0.0.47",
"@types/prettier": "^2.6.4",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"@web/dev-server-esbuild": "0.2.16",
"@web/dev-server-import-maps": "^0.0.7",
"@web/dev-server-rollup": "^0.3.17",
"@web/test-runner": "^0.13.15",
"@web/test-runner-playwright": "^0.8.6",
"@web/test-runner-puppeteer": "^0.10.5",
"@webcomponents/webcomponentsjs": "^2.5.0",
"chromatic": "^6.11.4",
"del": "^6.1.0",
"del-cli": "^5.0.0",
"esbuild": "^0.17.8",
"esbuild-plugin-lit-css": "^2.0.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"globby": "^13.1.1",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"minimist": "^1.2.6",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.4",
"rollup-plugin-lit-css": "^4.0.0",
"storybook": "6.5.9",
"stylelint": "^14.11.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^28.0.0",
"ts-lit-plugin": "^1.2.1",
"typescript": "4.6.3",
"wait-on": "^5.3.0"
},
"customElements": "dist/custom-elements.json"
}