-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.72 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.72 KB
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
{
"name": "manhunt",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"sideEffects": [
"*.css",
"*.scss"
],
"scripts": {
"start": "nodemon dist/server/index.js",
"start:prod": "dist/server/index.js",
"build:server": "tsc -p tsconfig-server.json",
"build:client": "cross-env NODE_ENV=production NODE_OPTIONS=--max-old-space-size=900 webpack -c webpack.prod.js",
"build": "npm run build:server && npm run build:client",
"dev:server": "tsc -p tsconfig-server.json -w",
"dev:client": "cross-env NODE_ENV=development webpack -c webpack.dev.js -w",
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"test": "echo \"Error: no test specified\" && exit 1",
"seed": "node server/database/seed.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@ar-js-org/ar.js": "3.4.2",
"@auth0/auth0-react": "^2.1.0",
"@react-three/drei": "^9.77.4",
"@react-three/fiber": "^8.13.4",
"@tensorflow/tfjs": "4.3",
"@types/styled-components": "^5.1.26",
"axios": "^1.4.0",
"browserify-fs": "^1.0.0",
"canvas": "^2.11.2",
"concurrently": "^8.2.0",
"cross-env": "^7.0.3",
"dotenv": "^16.1.4",
"dotenv-webpack": "^8.0.1",
"drei": "^2.2.21",
"express": "^4.18.2",
"face-api.js": "^0.22.2",
"fs": "^0.0.1-security",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"pg": "^8.11.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-feather": "^2.0.10",
"react-helmet": "^6.1.0",
"react-responsive": "^9.0.2",
"react-router-dom": "^6.12.0",
"react-switch": "^7.0.0",
"react-webcam": "^7.1.1",
"reactjs-popup": "^2.0.5",
"sequelize": "^6.32.0",
"socket.io": "^4.6.2",
"socket.io-client": "^4.6.2",
"stream-browserify": "^3.0.0",
"styled-components": "^5.3.10",
"three": "^0.153.0",
"three-stdlib": "^2.23.10",
"tslib": "^2.5.3",
"util": "^0.12.5",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/preset-env": "^7.22.4",
"@babel/preset-react": "^7.22.3",
"@babel/preset-typescript": "^7.22.5",
"@types/express": "^4.17.17",
"@types/node": "^20.2.5",
"@types/react": "^18.2.9",
"@types/react-dom": "^18.2.4",
"@types/styled-components": "^5.1.26",
"@types/three": "^0.152.1",
"@types/uuid": "^9.0.2",
"@types/webpack-bundle-analyzer": "^4.6.0",
"babel-loader": "^9.1.2",
"html-webpack-plugin": "^5.5.1",
"nodemon": "^2.0.22",
"styled-components": "^6.0.0-rc.3",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"typescript": "^5.1.3",
"webpack": "^5.86.0",
"webpack-bundle-analyzer": "^4.9.0",
"webpack-cli": "^5.1.4"
}
}