-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
107 lines (107 loc) · 3.94 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
{
"name": "flipper-ui",
"version": "0.35.4",
"description": "React UI based on the @mui/material toolkit for the web",
"main": "dist/index.js",
"author": "NG",
"license": "MIT",
"homepage": "https://flipper-ui.ngi.com.br/",
"repository": {
"type": "git",
"url": "https://github.com/nginformatica/flipper-ui.git"
},
"scripts": {
"start": "storybook dev -p 6006",
"build": "yarn clean && yarn build:ts && yarn build:babel",
"build:ts": "tsc --emitDeclarationOnly",
"build:babel": "babel src --out-dir dist --extensions '.ts,.tsx' --ignore '**/*.stories.tsx' --ignore '**/*.spec.tsx' --ignore 'src/test/**'",
"build:link": "yarn build && yarn copy:package && yarn publish:yalc",
"docs:build": "storybook build -o docs",
"copy:package": "cp package.json dist/",
"publish:yalc": "cd dist/ && yalc publish && cd ..",
"release": "yarn build && node pre-publish.js && npm publish ./dist --access public",
"clean": "rm -rf ./dist",
"type-check": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:quiet": "eslint . --quiet",
"format": "prettier -w 'src/**/*.{ts,tsx}'",
"test:ci": "yarn test --coverage",
"test": "jest --verbose --silent --passWithNoTests --noStackTrace --runInBand --updateSnapshot"
},
"dependencies": {
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.0",
"@mui/icons-material": "6.3.1",
"@mui/material": "6.3.1",
"@mui/system": "6.3.1",
"@mui/x-date-pickers": "7.23.3",
"ramda": "0.30.1",
"react-loading-skeleton": "3.5.0",
"react-number-format": "5.4.3"
},
"devDependencies": {
"@babel/cli": "7.26.4",
"@babel/core": "7.26.0",
"@babel/plugin-transform-runtime": "7.25.9",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.26.3",
"@babel/preset-typescript": "7.26.0",
"@faker-js/faker": "9.3.0",
"@storybook/addon-essentials": "8.4.7",
"@storybook/addon-webpack5-compiler-babel": "3.0.5",
"@storybook/blocks": "8.4.7",
"@storybook/react": "8.4.7",
"@storybook/react-webpack5": "8.4.7",
"@stylistic/eslint-plugin": "2.12.1",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.1.0",
"@testing-library/user-event": "14.5.2",
"@types/jest": "29.5.14",
"@types/node": "22.10.5",
"@types/ramda": "0.30.2",
"@types/react": "18.3.12",
"@types/uuid": "10.0.0",
"@typescript-eslint/eslint-plugin": "8.19.1",
"@typescript-eslint/parser": "8.19.1",
"babel-loader": "9.2.1",
"babel-plugin-import": "1.13.8",
"babel-plugin-module-resolver": "5.0.2",
"date-fns": "4.1.0",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.3",
"eslint-plugin-react-hooks": "5.1.0",
"fs-extra": "11.2.0",
"identity-obj-proxy": "3.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"prettier": "3.4.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"storybook": "8.4.7",
"styled-components": "6.1.14",
"ts-jest": "29.2.5",
"ts-loader": "9.5.1",
"typescript": "5.7.3",
"typescript-eslint": "8.19.1",
"uuid": "11.0.4",
"webpack": "5.97.1"
},
"peerDependencies": {
"date-fns": "^4.0.0",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0",
"styled-components": "^6.0.0"
},
"publishConfig": {
"ignore": [
"!dist/",
"!/node_modules/"
]
}
}