forked from bepronetwork/landing-page
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.44 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
{
"name": "landing-page",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "tsc --project tsconfig.server.json && node dist/index.js",
"build": "next build && tsc --project tsconfig.server.json",
"start": "NODE_ENV=production node dist/index.js",
"lint": "next lint",
"codegen": "npx apollo codegen:generate --localSchemaFile=graphql/graphql-schema.json --target=typescript --includes='graphql/**/*.{ts,tsx,js,jsx,graphql}' --tagName=gql --addTypename --globalTypesFile=types/graphql/generated.ts"
},
"dependencies": {
"@apollo/client": "^3.6.9",
"@taikai/rocket-kit": "^3.0.0-beta.2",
"@transak/transak-sdk": "^1.2.2",
"axios": "^0.27.2",
"deepmerge": "^4.2.2",
"graphql": "^16.6.0",
"imgproxy": "^1.0.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"next": "12.3.0",
"nextjs-google-analytics": "^2.2.2",
"numeral": "^2.0.6",
"polished": "^4.2.2",
"react": "18.2.0",
"react-cookie-consent": "^8.0.1",
"react-dom": "18.2.0",
"react-fast-marquee": "^1.3.5",
"react-text-truncate": "^0.19.0",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@types/lodash": "^4.14.185",
"@types/node": "18.7.18",
"@types/numeral": "^2.0.2",
"@types/react": "18.0.20",
"@types/react-dom": "18.0.6",
"@types/react-text-truncate": "^0.14.1",
"@types/styled-components": "^5.1.26",
"babel-plugin-styled-components": "^2.0.7",
"eslint": "8.23.1",
"eslint-config-next": "12.3.0",
"typescript": "4.8.3"
}
}