-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
50 lines (50 loc) · 1.29 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
{
"name": "rppg-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p 80",
"lint:eslint": "eslint . --ext .ts,.tsx",
"lint:staged": "lint-staged"
},
"lint-staged": {
"*.{js,jsx}": [
"npm run lint:eslint"
]
},
"pre-commit": "lint:staged",
"dependencies": {
"@tensorflow/tfjs": "^2.6.0",
"chart.js": "^2.9.3",
"fili": "^2.0.3",
"lodash": "^4.17.20",
"next": "^9.5.5",
"prop-types": "15.7.2",
"react": "16.13.1",
"react-chartjs-2": "^2.10.0",
"react-dom": "16.13.1",
"react-webcam": "5.2.0",
"sass": "1.26.10"
},
"devDependencies": {
"@types/react": "^16.9.53",
"@types/chart.js": "^2.9.28",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"eslint": "7.12.0",
"eslint-config-airbnb": "18.2.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "4.2.0",
"lint-staged": "8.1.5",
"pre-commit": "1.2.2",
"prettier": "^1.17.0",
"typescript": "^4.0.3"
}
}