-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.98 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
{
"name": "@wlloyalty/wll-react-sdk",
"version": "1.0.25",
"license": "UNLICENSED",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"build:types": "rollup -c --bundleConfigAsCjs",
"build:all": "yarn build",
"prepare": "husky && yarn build:all",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test-storybook": "test-storybook",
"chromatic": "npx chromatic",
"type-check": "tsc --noEmit",
"commit": "cz",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"tsc-files --noEmit"
]
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"dependencies": {
"@types/color": "^3.0.6",
"color": "^4.2.3",
"lucide-react": "^0.427.0",
"zod": "^3.23.8"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-native": ">=0.70.0 <0.73.0",
"react-native-web": "^0.19.0"
},
"devDependencies": {
"@babel/cli": "^7.22.x",
"@babel/core": "^7.25.2",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@commitlint/cz-commitlint": "^19.5.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-typescript": "^11.1.3",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-interactions": "^8.2.9",
"@storybook/addon-links": "^8.2.9",
"@storybook/addon-onboarding": "^8.2.9",
"@storybook/addon-react-native-web": "^0.0.20",
"@storybook/cli": "^8.2.9",
"@storybook/react": "^8.2.9",
"@storybook/react-webpack5": "^8.2.9",
"@types/react": "^18.2.22",
"@types/react-dom": "^18.2.7",
"@types/react-native": "^0.72.2",
"babel-loader": "^9.2.1",
"babel-plugin-react-native-web": "^0.19.12",
"babel-plugin-transform-remove-console": "^6.9.4",
"chromatic": "^11.7.1",
"commitizen": "^4.3.1",
"concurrently": "^8.2.2",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"msw": "^2.6.0",
"prettier": "^3.3.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-native": "0.72.14",
"react-native-web": "^0.19.9",
"rollup": "^3.28.1",
"rollup-plugin-dts": "^6.0.1",
"ts-loader": "^9.5.1",
"tsc-files": "^1.1.4",
"typescript": "^5.2.2",
"vitepress": "^1.5.0",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"volta": {
"node": "20.18.0",
"yarn": "1.22.22"
}
}