-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.47 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.47 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
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
117
118
119
120
121
122
123
124
125
126
{
"name": "chainjet-frontend",
"version": "1.0.0",
"private": true,
"scripts": {
"link-types": "rm -f graphql.ts && cp ../platform/generated/graphql.ts graphql.ts",
"dev": "yarn link-types && next dev",
"build": "next build",
"start": "next start",
"type-check": "tsc",
"prettier": "prettier --write '{src,pages,components}/**/*.{ts,tsx}'",
"test": "jest"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write"
],
"*.{md,css}": "prettier --write"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@apollo/client": "3.2.4",
"@apollo/react-common": "^3.1.4",
"@apollo/react-hooks": "^4.0.0",
"@apollo/react-ssr": "^4.0.0",
"@emotion/core": "^10.0.35",
"@emotion/styled": "^10.0.27",
"@ethersproject/address": "^5.6.1",
"@headlessui/react": "1.7.13",
"@projectstorm/react-diagrams": "^6.2.0",
"@rjsf/antd": "5.2.0",
"@rjsf/core": "5.2.0",
"@rjsf/utils": "5.2.0",
"@rjsf/validator-ajv6": "5.2.0",
"@stripe/react-stripe-js": "2.0.0",
"@stripe/stripe-js": "1.52.0",
"@xmtp/xmtp-js": "9.4.1",
"antd": "4.24.7",
"autoprefixer": "^10.4.8",
"babel-plugin-import": "^1.13.0",
"classnames": "^2.2.6",
"closest": "^0.0.1",
"cookieconsent": "^3.1.1",
"dagre": "^0.8.5",
"dayjs": "1.9.3",
"deepmerge": "^4.2.2",
"dotenv": "^8.2.0",
"emotion": "^10.0.27",
"enquire-js": "^0.2.1",
"ethers": "5.7.1",
"graphql": "^15.8.0",
"isomorphic-unfetch": "^3.0.0",
"less-vars-to-js": "1.3.0",
"lodash.get": "^4.4.2",
"mixpanel-browser": "2.45.0",
"ml-matrix": "^6.5.1",
"next": "12.3.4",
"next-plugin-antd-less": "^1.8.0",
"nookies": "^2.4.0",
"pathfinding": "^0.4.18",
"paths-js": "^0.4.11",
"postcss": "^8.4.16",
"rc-queue-anim": "^1.8.5",
"rc-scroll-anim": "^2.7.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-ga4": "2.1.0",
"react-icons": "4.8.0",
"react-markdown": "8.0.3",
"react-spring": "9.7.1",
"resize-observer-polyfill": "^1.5.1",
"siwe": "1.1.6",
"tailwindcss": "3.2.4",
"wagmi": "0.8.4",
"webpack-filter-warnings-plugin": "1.2.1"
},
"devDependencies": {
"@blunck/next-html": "^1.0.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.0.2",
"@types/classnames": "^2.2.10",
"@types/deepmerge": "^2.2.0",
"@types/express": "^4.17.7",
"@types/graphql": "^14.5.0",
"@types/lodash.get": "^4.4.7",
"@types/mixpanel-browser": "2.38.0",
"@types/node": "13.13.4",
"@types/nookies": "^2.0.3",
"@types/react": "^16.9.36",
"@types/react-ga": "^2.3.0",
"@types/react-icons": "^3.0.0",
"babel-jest": "^26.3.0",
"cross-env": "^7.0.2",
"eslint": "^8.37.0",
"eslint-config-next": "^12.2.3",
"express": "^4.17.1",
"http-proxy-middleware": "^2.0.6",
"jest": "^26.4.2",
"prettier": "^2.8.6",
"sharp": "0.30.7",
"typescript": "4.7.4"
},
"graphql": "../platform/generated/schema.graphql",
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/tests/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/tests/__mocks__/styleMock.js"
}
},
"next-unused": {
"debug": true,
"include": [
"src"
],
"exclude": [],
"entrypoints": [
"src/pages"
]
},
"browserslist": [
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
]
}