-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.6 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.6 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
{
"name": "@nodegeeks/ui-components",
"version": "0.1.0",
"description": "A collection of reusable UI components built with React, AWS Amplify UI, Tailwind CSS and NextJS",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "next dev",
"build": "rollup -c",
"clean": "rimraf node_modules dist package-lock.json",
"test": "jest",
"lint": "eslint . --fix",
"prepare": "npm run build"
},
"peerDependencies": {
"@aws-amplify/ui-react": "^6.9.1",
"next": "^15.1.6",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-typescript": "^11.0.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^14.3.1",
"@types/jest": "^29.5.14",
"autoprefixer": "^10.4.20",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.45",
"rollup": "^4.12.0",
"rollup-plugin-dts": "^6.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"tailwindcss": "^3.4.10",
"ts-jest": "^29.2.5",
"typescript": "^5.4.5"
},
"keywords": [
"react",
"typescript",
"ui",
"components",
"aws-amplify"
],
"author": "NodeGeeks",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nodegeeks/ui-components"
}
}