-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
42 lines (42 loc) · 1.05 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
{
"name": "app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build && next export",
"start": "next start",
"lint": "eslint . --ext .js,jsx --max-warnings 0",
"lint:fix": "npm run lint -- --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.19.0",
"chart.js": "^2.9.2",
"csvtojson": "^2.0.10",
"eccrypto": "^1.1.5",
"lodash": "^4.17.20",
"next": "^9.5.2",
"qrcode.react": "^1.0.0",
"react": "^16.10.2",
"react-chartjs-2": "^2.8.0",
"react-dom": "^16.10.2",
"react-dropzone": "^10.2.1",
"react-select": "^4.3.1",
"uuid": "^3.3.3"
},
"devDependencies": {
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.0.8",
"prettier": "^2.0.5",
"prettier-eslint": "^11.0.0"
}
}