-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.88 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.88 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
{
"name": "flipper-ui",
"version": "0.39.13",
"author": "NG",
"license": "MIT",
"main": "dist/index.js",
"homepage": "https://flipper-ui.ngi.com.br/",
"description": "React UI based on the @mui/material toolkit for the web",
"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.1",
"@mui/icons-material": "6.4.8",
"@mui/material": "6.4.8",
"@mui/system": "6.4.8",
"@mui/x-date-pickers": "7.28.2",
"react-loading-skeleton": "3.5.0",
"react-number-format": "5.4.4"
},
"devDependencies": {
"@babel/cli": "7.28.6",
"@babel/core": "7.29.0",
"@babel/plugin-transform-runtime": "7.29.0",
"@babel/preset-env": "7.29.0",
"@babel/preset-react": "7.28.5",
"@babel/preset-typescript": "7.28.5",
"@faker-js/faker": "9.9.0",
"@storybook/addon-essentials": "8.6.12",
"@storybook/addon-webpack5-compiler-babel": "3.0.6",
"@storybook/blocks": "8.6.12",
"@storybook/react": "8.6.12",
"@storybook/react-webpack5": "8.6.12",
"@stylistic/eslint-plugin": "5.10.0",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/jest": "30.0.0",
"@types/node": "25.5.0",
"@types/ramda": "0.30.2",
"@types/react": "18.3.12",
"@typescript-eslint/eslint-plugin": "8.57.0",
"@typescript-eslint/parser": "8.57.0",
"babel-loader": "10.1.1",
"babel-plugin-import": "1.13.8",
"babel-plugin-module-resolver": "5.0.2",
"date-fns": "4.1.0",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"fs-extra": "11.3.4",
"identity-obj-proxy": "3.0.0",
"jest": "30.3.0",
"jest-environment-jsdom": "30.3.0",
"prettier": "3.8.1",
"ramda": "0.30.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"storybook": "8.6.12",
"ts-jest": "29.4.6",
"ts-loader": "9.5.4",
"typescript": "5.9.3",
"typescript-eslint": "8.57.0",
"uuid": "11.1.0",
"webpack": "5.105.4"
},
"peerDependencies": {
"date-fns": "^4.0.0",
"ramda": "^0.30.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"@types/ramda": "^0.30.2"
},
"publishConfig": {
"ignore": [
"!dist/",
"!/node_modules/"
]
}
}