-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
77 lines (77 loc) · 2.17 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
{
"name": "peeps-generator",
"version": "0.2.0",
"description": "Build and customize your open peeps illustrations right away!",
"repository": {
"type": "git",
"url": "git+https://github.com/CeamKrier/peeps-generator.git"
},
"keywords": [
"open peeps",
"react-peeps",
"illustration",
"generate",
"build",
"builder",
"generator"
],
"author": "Emre Çakır",
"license": "MIT",
"bugs": {
"url": "https://github.com/CeamKrier/peeps-generator/issues"
},
"dependencies": {
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.23.0",
"@babel/register": "^7.22.15",
"@mantine/core": "^7.1.2",
"@mantine/hooks": "^7.1.2",
"compression": "^1.7.4",
"express": "^4.18.2",
"file-saver": "^2.0.5",
"ignore-styles": "^5.0.1",
"rc-slider": "^10.3.0",
"react": "^18.2.0",
"react-color": "^2.19.3",
"react-dom": "^18.2.0",
"react-fast-marquee": "^1.6.1",
"react-icons": "^4.11.0",
"react-moveable": "^0.54.2",
"react-peeps": "^0.1.10",
"react-scripts": "5.0.1"
},
"scripts": {
"start": "node server/index.js",
"build": "react-scripts build",
"dev": "react-scripts start",
"prebuild": "rimraf build",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/express": "^4.17.18",
"@types/file-saver": "^2.0.5",
"@types/node": "^20.8.2",
"@types/react": "^18.2.24",
"@types/react-color": "^3.0.7",
"@types/react-dom": "^18.2.8",
"@welldone-software/why-did-you-render": "^7.0.1",
"rimraf": "^5.0.5",
"typescript": "~4.9.5"
}
}