-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
121 lines (121 loc) · 4.01 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
{
"name": "flipper-ui",
"version": "0.30.3",
"description": "",
"main": "dist/index.js",
"homepage": "https://flipper-ui.ngi.com.br/",
"repository": {
"type": "git",
"url": "https://github.com/nginformatica/flipper-ui.git"
},
"scripts": {
"test": "jest --silent --passWithNoTests --noStackTrace --runInBand",
"test:ci": "yarn test --coverage",
"start": "storybook dev -p 6006",
"clean": "rm -rf ./dist/*",
"copy:package": "cp package.json dist/",
"publish:yalc": "cd dist/ && yalc publish && cd ..",
"build": "yarn clean && yarn build:ts && yarn build:babel",
"build:link": "yarn build && yarn copy:package && yarn publish:yalc",
"build:ts": "tsc --emitDeclarationOnly",
"build:babel": "babel src --out-dir dist --extensions \".ts,.tsx\" --ignore \"**/*.spec.tsx\" --ignore \"**/*.stories.tsx\"",
"lint": "eslint -c .eslintrc.json 'src/**/*.{ts,tsx}'",
"lint:fix": "eslint -c .eslintrc.json --fix 'src/**/*.{ts,tsx}'",
"predeploy": "yarn build && yarn storybook:build",
"docs:build": "storybook build -o docs",
"type-check": "tsc --noEmit",
"deploy": "gh-pages -d docs",
"release": "yarn build && node pre-publish.js && npm publish ./dist --access public"
},
"author": "NG Informática",
"license": "MIT",
"dependencies": {
"@date-io/date-fns": "1.3.6",
"@material-ui/core": "4.12.4",
"@material-ui/icons": "4.11.3",
"@material-ui/lab": "4.0.0-alpha.61",
"@material-ui/pickers": "3.3.11",
"date-fns": "2.30.0",
"faker": "5.5.3",
"material-table": "1.69.3",
"material-ui-chip-input": "2.0.0-beta.2",
"nginformatica-styleguide": "1.0.2",
"ramda": "0.25.0",
"react-loading-skeleton": "3.3.1",
"react-number-format": "5.3.1",
"sprintf-js": "1.1.3",
"styled-component": "2.8.0",
"uuid": "9.0.1"
},
"devDependencies": {
"@babel/cli": "7.23.0",
"@babel/core": "7.23.2",
"@babel/plugin-transform-runtime": "7.23.2",
"@babel/preset-env": "7.23.2",
"@babel/preset-typescript": "7.23.2",
"@storybook/addon-actions": "7.4.6",
"@storybook/addon-essentials": "7.4.6",
"@storybook/addon-interactions": "7.4.6",
"@storybook/addon-links": "7.4.6",
"@storybook/addon-mdx-gfm": "7.4.6",
"@storybook/react": "7.4.6",
"@storybook/react-webpack5": "7.4.6",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.5.1",
"@types/faker": "5.5.3",
"@types/history": "5.0.0",
"@types/jest": "29.5.5",
"@types/node": "20.8.6",
"@types/ramda": "0.25.36",
"@types/react": "18.2.28",
"@types/react-router": "5.1.20",
"@types/react-router-dom": "5.3.3",
"@types/sprintf-js": "1.1.2",
"@types/styled-components": "5.1.28",
"@types/uuid": "9.0.5",
"@typescript-eslint/eslint-plugin": "6.7.5",
"@typescript-eslint/parser": "6.7.5",
"babel-loader": "9.1.3",
"babel-plugin-module-resolver": "5.0.0",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-imports": "2.0.0",
"canvas": "2.11.2",
"date-fns": "2.30.0",
"eslint": "8.51.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-ramda": "2.5.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-storybook": "0.6.15",
"fs-extra": "11.1.1",
"identity-obj-proxy": "3.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"node-fetch": "3.3.2",
"prettier": "3.0.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-router": "6.17.0",
"react-router-dom": "6.17.0",
"storybook": "7.4.6",
"styled-components": "6.1.0",
"ts-jest": "29.1.1",
"ts-loader": "9.5.0",
"typescript": "5.2.2",
"webpack": "5.89.0"
},
"peerDependencies": {
"date-fns": "2.30.0",
"react": "16.8.0",
"styled-components": "5.0.0"
},
"publishConfig": {
"ignore": [
"!dist/",
"!/node_modules/"
]
}
}