-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.25 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
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
{
"name": "instalike",
"version": "1.0.0",
"description": "An Instagram like app made in react to share and view your friends pictures.",
"license": "MIT",
"author": "Quentin Lienhardt",
"main": "src/App.tsx",
"repository": {
"type": "git",
"url": "https://github.com/QuentiumYT/Instalike.git"
},
"scripts": {
"loc": "yarn loc-w",
"loc-w": "concurrently \"yarn api-w\" \"yarn start\"",
"loc-l": "concurrently \"yarn api-l\" \"yarn start\"",
"api-w": "php -q -S 0.0.0.0:5501 -t \"C:\\Users\\Quentin\\MEGAsync\\LP DWEB\\Front Metter-Rothan\\instalike-api\\public\"",
"api-l": "php -q -S 0.0.0.0:5501 -t \"/home/quentin/MEGAsync/LP DWEB/Front Metter-Rothan/instalike-api/public\"",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"format": "prettier --write src/**/*.ts{,x}",
"lint": "tsc --noEmit && eslint src/**/*.ts{,x}"
},
"dependencies": {
"@chakra-ui/icon": "^1.2.1",
"@chakra-ui/icons": "^1.1.7",
"@chakra-ui/react": "^1.8.9",
"@chakra-ui/system": "^1.12.1",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@hookform/resolvers": "^1.3.8",
"@jmetterrothan/instalike": "1.1.2",
"@reduxjs/toolkit": "^1.9.5",
"@types/node": "^20.5.7",
"@types/react": "^17.0.65",
"@types/react-dom": "^17.0.20",
"@types/react-redux": "^7.1.26",
"axios": "^1.5.0",
"filepond": "^4.30.4",
"filepond-plugin-file-validate-type": "^1.2.8",
"filepond-plugin-image-crop": "^2.0.6",
"filepond-plugin-image-exif-orientation": "^1.0.11",
"filepond-plugin-image-preview": "^4.6.11",
"filepond-plugin-image-transform": "^3.8.7",
"framer-motion": "^6.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-filepond": "^7.1.2",
"react-hook-form": "^6.15.8",
"react-infinite-scroll-component": "^6.1.0",
"react-redux": "^8.1.2",
"react-router-dom": "^6.15.0",
"react-scripts": "^5.0.1",
"redux": "^4.2.1",
"redux-thunk": "^2.4.2",
"swiper": "^9.4.1",
"typescript": "^4.9.5",
"web-vitals": "^3.4.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.22.11",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/plugin-syntax-flow": "^7.22.5",
"@babel/plugin-transform-react-jsx": "^7.22.5",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"eslint": "^8.48.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^6.0.1",
"prettier": "^3.0.3"
},
"resolutions": {
"@types/react": "^17.0.65",
"@types/react-dom": "^17.0.20"
},
"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"
]
}
}