-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 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
{
"name": "react-demo-app",
"author": "Gherman Sokolov",
"license": "MIT",
"engines": {
"node": "16"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"static": "next export",
"start": "next start"
},
"dependencies": {
"axios": "^0.21.0",
"filepond": "^4.30.4",
"filepond-plugin-file-validate-type": "^1.2.8",
"jwt-decode": "^3.1.2",
"next": "^12.2.2",
"react": "18.2.0",
"react-confirm-alert": "^3.0.6",
"react-dom": "18.2.0",
"react-filepond": "^7.1.2",
"react-tabs": "^5.1.0",
"typescript": "4.7.4",
"zustand": "^4.0.0-rc.1"
},
"devDependencies": {
"@types/node": "16.11.7",
"@types/react": "^16.9.56",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.19.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-react": "^7.30.1"
}
}