-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
162 lines (162 loc) · 5.35 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
{
"name": "@moda/om",
"version": "20.3.1",
"description": "Moda Operandi design system",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/src/index.d.ts",
"sass": "src/index.scss",
"style": "dist/styles.css",
"repository": "[email protected]:ModaOperandi/om.git",
"author": "ModaOperandi",
"license": "MIT",
"files": [
"dist",
"src",
"index.scss"
],
"sideEffects": [
"*.css",
"*.scss"
],
"scripts": {
"build": "NODE_ENV=production npm run compile && npm run types",
"build:documentation": "NODE_ENV=production cd documentation && npm run build",
"build:storybook": "NODE_ENV=storybook storybook build",
"clean": "rm -rf ./dist",
"commit": "git-cz",
"commitlint": "commitlint",
"compile": "rollup -c --bundleConfigAsCjs",
"format": "prettier --write '**/*'",
"lint": "eslint src",
"lint-staged": "lint-staged",
"postpublish": "pinst --enable",
"predeploy:documentation": "NODE_ENV=production npm run build && cd documentation && npm install && npm run build",
"prepare": "husky && echo ''",
"prepublishOnly": "npm run clean && npm run build && pinst --disable",
"scaffold:component": "node scripts/scaffold/react Components",
"scaffold:function": "node scripts/scaffold/sass Functions",
"scaffold:mixin": "node scripts/scaffold/sass Mixins",
"semantic-release": "semantic-release",
"start": "cd documentation && npm run start",
"storybook": "storybook dev -p 6006",
"test": "jest -w 1",
"tsc": "tsc",
"types": "tsc -p tsconfig.json --emitDeclarationOnly",
"unlink-all": "yalc remove --all && npm install"
},
"peerDependencies": {
"react": ">=18.1.0",
"react-dom": ">=18.1.0",
"react-router-dom": "^5.1.2"
},
"dependencies": {
"@moda/icons": "^5.29.9",
"@moda/tokens": "^6.2.0",
"@storybook/addon-styling": "^1.3.7",
"@types/classnames": "^2.3.4",
"classnames": "^2.5.1",
"credit-card-type": "^10.0.1",
"focus-visible": "^5.2.1",
"proportional-scale": "^4.0.0",
"react-focus-on": "^3.9.4",
"react-input-mask": "^2.0.4",
"scroll-into-view-if-needed": "^3.1.0",
"storybook": "^8.3.6",
"use-cursor": "^1.2.3"
},
"devDependencies": {
"@babel/core": "^7.25.9",
"@babel/preset-env": "^7.25.9",
"@babel/preset-react": "^7.25.9",
"@babel/preset-typescript": "^7.25.9",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.13.0",
"@moda/rollup-plugin-postcss": "^4.0.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^16.0.0",
"@storybook/addon-actions": "^8.3.6",
"@storybook/addon-essentials": "^8.3.6",
"@storybook/addon-links": "^8.3.6",
"@storybook/addon-mdx-gfm": "^8.3.6",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/addon-viewport": "^8.3.6",
"@storybook/addon-webpack5-compiler-babel": "^3.0.3",
"@storybook/addons": "^7.6.17",
"@storybook/react": "^8.3.6",
"@storybook/react-webpack5": "^8.3.6",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/cheerio": "^0.22.35",
"@types/credit-card-type": "^9.0.3",
"@types/jest": "^29.5.14",
"@types/ramda": "^0.30.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-input-mask": "^3.0.5",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"autoprefixer": "^10.4.20",
"babel-loader": "^9.2.1",
"commitizen": "^4.3.1",
"css-loader": "^7.1.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest-dom": "^5.4.0",
"eslint-plugin-jsx-a11y": "^6.10.1",
"eslint-plugin-no-loops": "^0.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-testing-library": "^7.0.0",
"globals": "^15.11.0",
"husky": "^9.1.6",
"identity-obj-proxy": "^3.0.0",
"ignore-not-found-export-webpack-plugin": "^1.0.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-matchmedia-mock": "^1.1.0",
"lint-staged": "^15.2.10",
"node-sass-package-importer": "^5.3.3",
"pinst": "^3.0.0",
"postcss": "^8.4.47",
"postcss-loader": "^8.1.1",
"prettier": "^3.3.3",
"ramda": "^0.30.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^5.1.2",
"rollup": "^4.24.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-scss": "^4.0.0",
"sass": "^1.80.4",
"sass-loader": "^16.0.2",
"semantic-release": "^24.1.3",
"semantic-release-npm-github": "^5.0.0",
"storybook-states": "^1.2.0",
"style-loader": "^4.0.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0",
"waait": "^1.0.5",
"webpack": "^5.95.0",
"webpack-cli": "^6.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
}
}