This repository has been archived by the owner on Jun 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
80 lines (80 loc) · 2.53 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
{
"name": "nude-dapp",
"version": "0.0.1",
"description": "Own Me's frontend dapp.",
"main": "App.tsx",
"scripts": {
"postinstall": "typechain --target=ethers-v5 ./abi/*.json --out-dir ./typechain",
"dev": "webpack serve --config webpack.config.dev.js",
"build": "webpack --config webpack.config.prod.js",
"lint": "eslint ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/own-me/nude-dapp.git"
},
"author": "Own Me Inc.",
"bugs": {
"url": "https://github.com/own-me/nude-dapp/issues"
},
"homepage": "https://github.com/own-me/nude-dapp",
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@fontsource/poppins": "^4.5.8",
"@fontsource/rock-salt": "^4.5.7",
"@fontsource/shadows-into-light": "^4.5.8",
"@fontsource/yeseva-one": "^4.5.9",
"@react-three/drei": "^9.14.3",
"@react-three/fiber": "^8.0.27",
"@reduxjs/toolkit": "^1.8.3",
"@veriff/incontext-sdk": "^1.3.1",
"@visx/responsive": "^2.10.0",
"@visx/scale": "^2.2.2",
"@visx/text": "^2.10.0",
"@visx/wordcloud": "^2.10.0",
"cryptocurrency-icons": "^0.18.0",
"dotenv": "^16.0.1",
"ethers": "^5.6.9",
"react": "^18.2.0",
"react-content-loader": "^6.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-redux": "^8.0.2",
"react-router-dom": "^6.3.0",
"react-transition-group": "^4.4.2",
"styled-components": "^5.3.5",
"three": "^0.142.0"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@typechain/ethers-v5": "^10.1.0",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@types/react-helmet": "^6.1.5",
"@types/react-router-dom": "^5.3.3",
"@types/react-transition-group": "^4.4.5",
"@types/styled-components": "^5.1.24",
"@types/three": "^0.141.0",
"@typescript-eslint/eslint-plugin": "^5.30.3",
"@typescript-eslint/parser": "^5.30.3",
"babel-loader": "^8.2.5",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"dotenv-webpack": "^7.1.1",
"eslint": "^8.19.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-webpack-plugin": "^3.2.0",
"html-webpack-plugin": "^5.5.0",
"style-loader": "^3.3.1",
"typechain": "^8.1.0",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
}
}