forked from Schrodinger-AI/interface
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.42 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.42 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
{
"name": "schrodinger",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "NEXT_PUBLIC_APP_ENV=development NODE_ENV=development next dev",
"dev:test": "NEXT_PUBLIC_APP_ENV=test NODE_ENV=test next dev",
"build:dev": "NEXT_PUBLIC_APP_ENV=development next build",
"build:test": "NEXT_PUBLIC_APP_ENV=test NODE_ENV=test next build",
"build": "NEXT_PUBLIC_APP_ENV=production NODE_ENV=production next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier -c --write '**/*'",
"prepare": "husky install"
},
"dependencies": {
"@ant-design/icons": "^5.3.1",
"@apollo/client": "^3.9.6",
"@ebay/nice-modal-react": "^1.2.13",
"@portkey-v1/did-ui-react": "^1.5.4-alpha.22",
"@portkey/contracts": "2.2.0",
"@portkey/detect-provider": "^2.1.0",
"@portkey/did-ui-react": "2.3.1",
"@portkey/onboarding": "^2.2.0",
"@portkey/provider-types": "^2.1.0",
"@portkey/request": "2.2.0",
"@portkey/services": "2.2.0",
"@portkey/types": "2.2.0",
"@portkey/utils": "2.2.0",
"@reduxjs/toolkit": "^1.9.5",
"@sentry/nextjs": "^7.19.0",
"@types/elliptic": "^6.4.18",
"@types/lodash-es": "^4.17.9",
"aelf-design": "^0.1.73-alpha.0",
"aelf-sdk": "^3.2.40",
"aelf-web-login": "2.0.1-beta.8",
"ahooks": "^3.7.10",
"antd": "^5.x",
"antd-mobile": "^5.35.0",
"antd-style": "^3.6.1",
"axios": "^0.24.0",
"bignumber": "^1.1.0",
"bn": "^1.0.5",
"clsx": "^2.1.0",
"dayjs": "^1.11.10",
"elliptic": "^6.5.4",
"eslint-plugin-no-inline-styles": "^1.0.5",
"firebase": "^9.23.0",
"graphql": "^16.8.1",
"lodash-es": "^4.17.21",
"lottie-react": "^2.4.0",
"next": "14.0.4",
"next-redux-wrapper": "^8.1.0",
"qs": "^6.11.2",
"react": "18.2.0",
"react-device-detect": "^2.2.3",
"react-dom": "18.2.0",
"react-fast-marquee": "^1.6.4",
"react-infinite-scroll-component": "^6.1.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.3.0",
"redux-persist": "^6.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@svgr/webpack": "^8.0.1",
"@types/jest": "^26.0.15",
"@types/node": "18.0.1",
"@types/qs": "^6.9.8",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"@typescript-eslint/eslint-plugin": "^5.30.4",
"@typescript-eslint/parser": "^5.30.4",
"aelf-lint": "0.0.1-alpha.2",
"autoprefixer": "^10.4.14",
"eslint": "^8.23.1",
"eslint-config-next": "12.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-tsdoc": "^0.2.17",
"husky": "^8.0.1",
"lint-staged": "13.2.2",
"next-babel-conditional-ssg-ssr": "^1.0.0",
"next-compose-plugins": "^2.2.1",
"postcss": "^8.4.23",
"postcss-nested": "^6.0.1",
"postcss-pxtorem": "^6.0.0",
"prettier": "^2.2.1",
"stylelint": "^14.9.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^26.0.0",
"tailwindcss": "^3.3.2",
"typescript": "4.7.4",
"url-loader": "^4.1.1"
},
"resolutions": {
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --cache --fix",
"eslint --cache --ext .js,.jsx,.ts,.tsx"
],
"*.{css,less}": "stylelint --fix"
}
}