-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
125 lines (125 loc) · 3.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": "milingo",
"description": "Miare's Design Language (Milingo)",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"author": "Miare <[email protected]> (https://mia.re)",
"version": "0.8.17",
"keywords": [
"design-library",
"react"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/miare-ir/Milingo"
},
"scripts": {
"build": "rimraf dist types && ENV=production webpack --mode=production",
"build:analyze": "rimraf dist types && ENV=production BUNDLE_ANALYZE=TRUE webpack --mode=production",
"dist": "yarn run build-storybook && yarn run build",
"start": "yarn run storybook",
"release": "yarn run dist && npm publish",
"storybook": "storybook dev -p 9001 -c .storybook",
"build-storybook": "rimraf docs && storybook build -c .storybook -o docs",
"snapshot": "yarn run build-storybook && percy storybook ./docs"
},
"browserslist": [
"defaults",
"last 2 Chrome versions",
"last 2 iOS versions"
],
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write ."
],
"*.{ts,tsx}": [
"eslint ./src --ext .ts,.tsx --fix --quiet"
],
"*.{css,scss}": [
"stylelint ./src/**/*.scss --config stylelint.config.js"
]
},
"engines": {
"node": ">=16"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@percy/storybook": "^4.3.5",
"@storybook/addon-viewport": "^7.0.2",
"@storybook/cli": "^7.0.2",
"@storybook/preset-create-react-app": "^7.0.2",
"@storybook/react": "^7.0.2",
"@storybook/react-webpack5": "^7.0.2",
"@types/node": "^18.15.11",
"@types/react": "^18.0.33",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/eslint-plugin-tslint": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"autoprefixer": "^10.4.14",
"css-loader": "^6.7.3",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-jsdoc": "^40.1.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.19.0",
"eslint-webpack-plugin": "^4.0.0",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"mini-css-extract-plugin": "^2.7.5",
"moment": "^2.29.4",
"moment-jalaali": "^0.9.6",
"node-sass": "^8.0.0",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"path": "^0.12.7",
"postcss-loader": "^7.2.4",
"prettier": "^2.8.7",
"prettier-stylelint": "^0.4.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-modal": "^3.16.1",
"react-scripts": "^5.0.1",
"resolve-url-loader": "^5.0.0",
"rimraf": "^4.4.1",
"sass-loader": "^13.2.2",
"storybook": "^7.0.2",
"storybook-addon-jsx": "^7.3.14",
"style-loader": "^3.3.2",
"stylelint": "^15.4.0",
"stylelint-config-recommended-scss": "^9.0.1",
"stylelint-config-standard": "^32.0.0",
"stylelint-scss": "^4.6.0",
"stylelint-webpack-plugin": "^4.1.0",
"ts-loader": "^9.4.2",
"typescript": "^5.0.4",
"url-loader": "^4.1.1",
"webpack": "^5.78.0",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^5.0.1"
},
"peerDependencies": {
"classnames": "^2.3.2",
"moment": "^2.29.4",
"moment-jalaali": "^0.9.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-modal": "^3.16.1"
},
"dependencies": {
"@percy/cli": "^1.22.0",
"babel-loader": "^9.1.2",
"classnames": "^2.3.2",
"prop-types": "^15.8.1",
"react-circular-progressbar": "^2.1.0",
"react-linkify": "^1.0.0-alpha"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}