-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.98 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
{
"name": "awesome-gcl",
"description": "React component library",
"version": "1.1.0",
"author": "Joao Gabriel Santos",
"license": "MIT",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"files": [
"dist"
],
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/jgabrielsantos/awesome-gcl.git"
},
"bugs": {
"url": "https://github.com/jgabrielsantos/awesome-gcl/issues"
},
"homepage": "https://github.com/jgabrielsantos/awesome-gcl#readme",
"keywords": [
"gcl",
"gabriel",
"typescript",
"javascript",
"jest",
"react",
"rollup"
],
"scripts": {
"dev": "nodemon",
"publish:rollup": "rm -rf dist && npx tailwindcss -i ./src/styles/styles.css -o ./dist/types/styles/styles.css && rollup -c && npm publish",
"test:watch": "jest --watchAll ./src/components ./tests",
"test:coverage": "jest --coverage"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-typescript": "^11.1.2",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.3",
"@types/react": "^18.2.20",
"@types/rollup-plugin-peer-deps-external": "^2.2.1",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"jest-styled-components": "^7.1.1",
"jsdom": "^22.1.0",
"nodemon": "^3.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.28.0",
"rollup-plugin-css-only": "^4.3.0",
"rollup-plugin-dts": "^5.3.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-replace": "^2.2.0",
"styled-components": "^6.0.7",
"ts-jest": "^29.1.1",
"tslib": "^2.6.1",
"typescript": "^5.1.6"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"tailwindcss": "^3.3.3",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/react-fontawesome": "^0.2.0"
}
}