-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.64 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
{
"name": "modelv",
"version": "1.0.0",
"description": "This web app allows us to become a virtual model with a webcam and a browser.",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"test": "jest",
"lint": "eslint --ext .ts,.tsx --ignore-path .gitignore .",
"typecheck": "tsc"
},
"author": "",
"repository": {
"type": "git",
"url": "https://github.com/shooontan/modelv.git"
},
"license": "MIT",
"dependencies": {
"@reduxjs/toolkit": "^1.3.6",
"@tensorflow/tfjs-node": "^1.7.2",
"dotenv": "^8.2.0",
"face-api.js": "^0.22.2",
"kalmanjs": "^1.1.0",
"next": "^9.3.4",
"next-transpile-modules": "^3.2.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"react-tabs": "^3.1.0",
"redux": "^4.0.5",
"styled-jsx": "^3.2.5",
"three": "^0.115.0",
"unstated-next": "^1.1.0"
},
"devDependencies": {
"@shooontan/tsconfig": "0.0.1",
"@types/jest": "^25.2.1",
"@types/node": "^13.11.1",
"@types/react": "^16.9.33",
"@types/react-redux": "^7.1.8",
"@types/react-tabs": "^2.3.1",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"babel-plugin-module-resolver": "^4.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"jest": "^25.5.3",
"node-sass": "^4.14.0",
"prettier": "^2.0.5",
"styled-jsx-plugin-sass": "^1.0.0",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3"
}
}