-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 4.02 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 4.02 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
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
{
"name": "@etchteam/mobius",
"version": "9.3.0",
"description": "WRAP's design system",
"scripts": {
"build": "node ./scripts/build.js",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"lint": "npm run lint:js && npm run lint:css",
"lint:fix": "npm run lint:js:fix && npm run lint:css:fix",
"lint:js": "eslint --ext .js,.jsx,.ts,.tsx ./",
"lint:js:fix": "npm run lint:js -- --fix",
"lint:css": "stylelint \"./**/*.{css,scss}\"",
"lint:css:fix": "npm run lint:css -- --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"test-storybook": "npx concurrently -k -s first -n \"SB,TEST\" -c \"magenta,blue\" \"npx http-server storybook-static --port 6006 --silent\" \"npx wait-on tcp:127.0.0.1:6006 && test-storybook\"",
"commitlint": "commitlint",
"pre-commit": "lint-staged",
"prepare": "node ./scripts/install-husky.js && node ./scripts/export-components.js",
"release": "semantic-release",
"chromatic": "chromatic --exit-zero-on-changes"
},
"engines": {
"npm": "^9 || ^10",
"node": "^18 || ^20 || ^22"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"*.{css,scss}": "stylelint --fix --allow-empty-input"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"devDependencies": {
"@babel/core": "7.25.2",
"@babel/preset-env": "7.23.8",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "^7.24.7",
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@etchteam/eslint-config": "^2.0.12",
"@etchteam/stylelint-config": "^1.0.1",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-commonjs": "23.0.2",
"@rollup/plugin-node-resolve": "15.0.1",
"@rollup/plugin-typescript": "9.0.2",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@storybook/addon-a11y": "^8.6.12",
"@storybook/addon-docs": "^8.6.12",
"@storybook/addon-webpack5-compiler-babel": "^3.0.6",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^8.6.12",
"@storybook/react-webpack5": "^8.6.12",
"@storybook/test": "^8.6.12",
"@storybook/test-runner": "^0.22.0",
"@storybook/theming": "^8.3.3",
"@types/lodash": "4.14.189",
"@types/react": "^18.0.17",
"autoprefixer": "^10.4.20",
"axe-playwright": "^2.0.3",
"babel-loader": "^9.1.3",
"chromatic": "^11.7.0",
"conventional-changelog-conventionalcommits": "^7.0.0",
"css-loader": "^6.7.1",
"eslint": "^8.29.0",
"glob": "8.0.3",
"husky": "8.0.1",
"lint-staged": "15.2.7",
"mini-css-extract-plugin": "2.7.7",
"postcss": "^8.4.28",
"prettier": "^3.3.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.41.5",
"rollup": "3.30.0",
"rollup-plugin-copy": "3.4.0",
"rollup-plugin-postcss": "4.0.2",
"sass": "^1.54.4",
"sass-loader": "13.1.0",
"semantic-release": "^23.1.1",
"style-loader": "^3.3.1",
"stylelint": "^15.10.1",
"ts-loader": "^9.3.1",
"tsconfig-paths": "4.1.0",
"tsconfig-paths-webpack-plugin": "4.0.0",
"typescript": "4.8.4",
"url-loader": "^4.1.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"@etchteam/mobius-tokens": "^1.4.0",
"@formkit/auto-animate": "1.0.0-beta.6",
"@popperjs/core": "^2.11.6",
"@svgr/webpack": "5.5.0",
"classnames": "^2.3.1",
"date-fns": "^3.6.0",
"focus-trap-react": "^10.0.2",
"mono-icons": "1.3.1",
"normalize.css": "8.0.1",
"react-a11y-dialog": "^7.3.0",
"react-day-picker": "^9.0.6",
"react-minimal-pie-chart": "^8.4.0",
"react-popper": "^2.3.0",
"react-textarea-autosize": "^8.3.3"
},
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts",
"module": "dist/index.esm.js",
"src": "src/index.tsx",
"files": [
"dist",
"src"
],
"readme": "README.md",
"license": "MIT",
"homepage": "https://mobius.wrap.ngo"
}