-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.85 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 2.85 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
{
"name": "react-dsgov",
"description": "Componentes React do DSGov (Padrão Digital do Governo).",
"author": "cosis-stn",
"version": "0.9.12",
"private": false,
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/tesouro/react-dsgov.git"
},
"homepage": "https://cosis-stn.github.io/react-dsgov/styleguide/",
"license": "MIT",
"keywords": [
"react",
"components",
"ui",
"dsgov"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist",
"package.json",
"README.md"
],
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@govbr-ds/core": "^3.3.1",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"babel-plugin-react-css-modules": "^5.2.6",
"classnames": "^2.3.1",
"font-awesome": "^4.7.0",
"lodash.uniqueid": "^4.0.1",
"react-any-attr": "^1.1.2",
"react-fontawesome": "^1.7.1",
"react-lorem-ipsum": "^1.4.10",
"react-router-dom": "^6.3.0",
"react-scripts": "^5.0.1",
"sass": "^1.54.3",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "react-scripts start",
"build": "rollup -c",
"test": "react-scripts test",
"eject": "react-scripts eject",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build",
"buildbabel": "rm -rf dist && NODE_ENV=production babel src/components --out-dir dist --copy-files"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/cli": "^7.18.9",
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.4",
"@types/lodash.uniqueid": "^4.0.7",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"@welldone-software/why-did-you-render": "^7.0.1",
"eslint": "^8.20.0",
"eslint-plugin-react": "^7.30.1",
"react": "^18.2.0",
"react-docgen-typescript": "^2.2.2",
"react-dom": "^18.2.0",
"react-styleguidist": "^11.2.0",
"rollup": "^2.77.2",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"typescript-plugin-css-modules": "^3.4.0",
"webpack": "^5.73.0"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}