-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.55 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
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
91
92
93
94
95
96
97
{
"name": "canary-global-game-jam",
"version": "0.1.0",
"description": "A game using ThreeJS for Global Game Jam 2024",
"keywords": [
"kusama",
"blockchain",
"polkadot",
"react",
"threejs",
"3d",
"ggj",
"global game jam",
"aw",
"anything world"
],
"main": "dist/index.js",
"module": "dist/index.js",
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/team-three-2024/meme-mine.git"
},
"dependencies": {
"@babel/polyfill": "7.12.1",
"@react-three/drei": "8.11.1",
"@react-three/fiber": "7.0.26",
"@react-three/postprocessing": "2.1.6",
"@types/three": "0.136.0",
"babel-eslint": "^10.1.0",
"core-js": "^3.19.0",
"face-api.js": "^0.22.2",
"react": "*",
"react-dom": "*",
"react-hot-toast": "^2.4.1",
"styled-components": "^5.3.0",
"three": "0.136.0"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "7.12.3",
"@babel/preset-env": "^7.15.6",
"eslint": "^7.11.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^3.9.2",
"eslint-webpack-plugin": "^2.5.2",
"gh-pages": "^6.1.1",
"react-scripts": "2.0.3"
},
"overrides": {
"three": "0.136.0"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"scripts": {
"start": "react-scripts --openssl-legacy-provider start",
"build": "react-scripts --openssl-legacy-provider build",
"dist": "rm -rf dist && NODE_OPTIONS=--openssl-legacy-provider NODE_ENV=production babel src/lib public/assets --out-dir dist --copy-files --ignore __tests__,spec.js,test.js,__snapshots__",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.{js,jsx}\" --fix",
"lint": "eslint \"{src,apps,libs,test}/**/*.{js,jsx}\"",
"deploy": "gh-pages -d build"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"bugs": {
"url": "https://github.com/team-three-2024/meme-mine/issues"
},
"homepage": "https://team-three-2024.github.io",
"author": "Vilson Vieira",
"contributors": [
"Lauro Gripa"
],
"license": "MIT"
}