-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.79 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "psyche",
"version": "2.0.0",
"author": "ffimnsr",
"private": true,
"scripts": {
"start": "pnpm watch",
"build": "webpack --config webpack.development.babel.js --mode development --no-color",
"build.production": "webpack --config webpack.production.babel.js --mode production --no-color",
"build.types": "tsc --noEmit false --emitDeclarationOnly",
"watch": "webpack serve --config webpack.development.babel.js --no-color",
"lint": "eslint */**/*.{ts,tsx}",
"lint.fix": "eslint */**/*.{ts,tsx} --quiet --fix",
"lint.full": "tsc --noEmit && eslint */**/*.{ts,tsx} --quiet --fix",
"test": "jest",
"postinstall": "husky install",
"mock": "node ./.apollo/mock-server.js",
"schema": "apollo client:download-schema -c ./.apollo/apollo.member.config.js ./.apollo/generated_schemas/schema.member.graphql"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.20.13",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@babel/register": "^7.18.9",
"@babel/runtime": "^7.20.13",
"@testing-library/react": "^14.0.0",
"@types/blueimp-md5": "^2.18.0",
"@types/d3": "^7.4.0",
"@types/jest": "^29.4.0",
"@types/js-cookie": "^3.0.2",
"@types/jsonpath": "^0.2.0",
"@types/lodash": "^4.14.191",
"@types/node": "18.13.0",
"@types/react": "~18.0.28",
"@types/react-dom": "~18.0.11",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.26",
"@types/webpack": "^5.28.0",
"@types/webpack-env": "^1.18.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"autoprefixer": "^10.4.13",
"babel-jest": "^29.4.3",
"babel-loader": "^9.1.2",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^4.2.2",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"fantasticon": "^2.0.0",
"fork-ts-checker-webpack-plugin": "^7.3.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.3",
"jest": "^29.4.3",
"jsdom": "^21.1.0",
"mini-css-extract-plugin": "^2.7.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"postcss-loader": "^7.0.2",
"prettier": "^2.8.4",
"terser-webpack-plugin": "^5.3.6",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"typescript": "~4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@auth0/auth0-react": "^2.0.0",
"@blueprintjs/core": "^4.16.3",
"@blueprintjs/icons": "^4.13.2",
"@blueprintjs/popover2": "^1.13.3",
"@solana/web3.js": "^1.73.2",
"blueimp-md5": "^2.19.0",
"classnames": "^2.3.2",
"d3": "^7.8.2",
"framer-motion": "^9.0.4",
"js-cookie": "^3.0.1",
"jsonpath": "^1.1.1",
"jwt-decode": "^3.1.2",
"loglevel": "^1.8.1",
"moment": "^2.29.4",
"normalize.css": "^8.0.1",
"react": "~18.2.0",
"react-dom": "~18.2.0",
"react-helmet-async": "^1.3.0",
"react-hook-form": "^7.43.1",
"react-router": "^6.8.1",
"react-router-dom": "^6.8.1",
"recoil": "^0.7.6",
"styled-components": "^5.3.6"
},
"engines": {
"node": ">=16"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}