-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
104 lines (104 loc) · 3.82 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
{
"name": "protofun-ui",
"version": "0.3.21",
"private": true,
"license": "UNLICENSED",
"engines": {
"node": ">=18"
},
"author": {
"name": "Daniel Constantin",
"email": "[email protected]"
},
"scripts": {
"dev": "NEXT_PUBLIC_APP_VER=`npm pkg get version` NEXT_PUBLIC_GIT_HASH=`git rev-parse HEAD` next dev",
"prebuild": "yarn build:sitemap && yarn build:sw",
"build:sw": "tsc -p service-worker/tsconfig.json",
"build:sitemap": "ts-node -O '{\"module\": \"commonjs\"}' scripts/generate-sitemap.ts > public/sitemap.xml",
"build": "NEXT_PUBLIC_APP_VER=`npm pkg get version` NEXT_PUBLIC_GIT_HASH=`git rev-parse HEAD` next build",
"analyze": "ANALYZE=true yarn build",
"docker:build": "docker build -t danielconstantin/protofun-ui .",
"docker:run": "docker run -p 3000:3000 danielconstantin/protofun-ui",
"docker:tag": "docker image tag danielconstantin/protofun-ui danielconstantin/protofun-ui:$(cat package.json | jq -r '.version') && docker image tag danielconstantin/protofun-ui danielconstantin/protofun-ui:latest",
"docker:push": "docker push danielconstantin/protofun-ui:$(cat package.json | jq -r '.version') && docker push danielconstantin/protofun-ui:latest",
"deploy": "yarn docker:build && yarn docker:tag && yarn docker:push",
"start": "next start",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"check-types": "tsc --noEmit",
"test": "vitest",
"coverage": "vitest run --coverage",
"codegen": "graphclient build",
"codegen:watch": "nodemon -w ./app/queries.gql -x 'yarn codegen'",
"graphiql": "graphclient serve-dev"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@feathersjs/authentication-client": "5.0.8",
"@feathersjs/feathers": "5.0.8",
"@feathersjs/socketio-client": "5.0.8",
"@graphprotocol/client-cli": "^3.0.0",
"@mui/icons-material": "^5.14.12",
"@mui/lab": "^5.0.0-alpha.147",
"@mui/material": "^5.14.12",
"@nanostores/logger": "^0.2.3",
"@nanostores/react": "^0.7.1",
"@react-spring/web": "^9.7.3",
"@sentry/nextjs": "^7.57.0",
"bufferutil": "^4.0.7",
"date-fns": "^2.30.0",
"decimal.js": "^10.4.3",
"encoding": "^0.1.13",
"graphql": "^16.8.0",
"lightweight-charts": "^4.1.0",
"lodash.isequal": "^4.5.0",
"lodash.throttle": "^4.1.1",
"md5": "^2.3.0",
"million": "^2.6.0-beta.4",
"nanostores": "^0.9.3",
"notistack": "^3.0.1",
"posthog-js": "^1.82.1",
"protofun": "^0.3.5",
"protofun-service": "https://service.protocol.fun/protofun-service-0.1.3.tgz",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.5",
"recharts": "^2.8.0",
"socket.io-client": "^4.7.2",
"urql": "^4.0.5",
"usehooks-ts": "^2.9.1",
"utf-8-validate": "^6.0.3",
"uuid": "^9.0.0"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.4.8",
"@svgr/webpack": "^8.0.1",
"@types/lodash.isequal": "^4.5.6",
"@types/lodash.throttle": "^4.1.7",
"@types/md5": "^2.3.2",
"@types/node": "^20.3.2",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@types/uuid": "^9.0.2",
"eslint": "^8.43.0",
"eslint-config-next": "^13.5.3",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^7.0.1",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-unused-imports": "^2.0.0",
"next": "^13.5.3",
"nodemon": "^2.0.22",
"prettier": "^2.5.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"vitest": "^0.32.2"
}
}