-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.61 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.61 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
{
"name": "react-framify",
"version": "2.0.2",
"description": "A React component library for device framesets",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build-babel": "babel src --out-dir dist --presets=@babel/preset-react,@babel/preset-env",
"build-webpack": "webpack --config webpack.config.mjs",
"build-ts": "tsc",
"build": "npm run build-ts && npm run build-babel && npm run build-webpack",
"test": "echo 'Error: no test specified' && exit 1",
"dev": "nodemon ./bin/www"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodeNKoffee/react-framify.git"
},
"keywords": [
"react",
"framify",
"component",
"library"
],
"author": "Hatem Soliman hatemthedev@gmail.com",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/CodeNKoffee/react-framify/issues"
},
"homepage": "https://react-framify.hatemsoliman.dev/",
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.23.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/plugin-syntax-jsx": "^7.23.3",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.24.7",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"autoprefixer": "^10.3.1",
"babel-loader": "^9.1.3",
"css-loader": "^6.10.0",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.24.0",
"image-webpack-loader": "^8.1.0",
"nodemon": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"style-loader": "^3.3.4",
"ts-loader": "^9.2.6",
"typescript": "4.9.5",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@svgr/plugin-svgo": "^8.1.0",
"@svgr/webpack": "^8.1.0",
"autoprefixer": "^10.4.19",
"file-loader": "^6.2.0",
"http-cache-semantics": "^4.1.1",
"imagemin-gifsicle": "^7.0.0",
"imagemin-mozjpeg": "^10.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-pngquant": "^10.0.0",
"imagemin-webp": "^8.0.0",
"react-scripts": "^5.0.1",
"resolve-url-loader": "^5.0.0",
"semver-regex": "^4.0.5",
"svgo": "^3.3.2"
},
"files": [
"dist"
],
"overrides": {
"got": "^12.0.0",
"http-cache-semantics": "^4.1.1",
"nth-check": "^2.0.1",
"postcss": "^8.4.31",
"semver-regex": "^4.0.5"
}
}