-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
119 lines (119 loc) · 3.97 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
117
118
119
{
"name": "searchneu-nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently -n app,codegen \"next dev -p 5000\" \"npm:generate:graphql -- --watch\"",
"dev:fullstack": "NEXT_PUBLIC_GRAPHQL_ENDPOINT=http://localhost:4000 NEXT_PUBLIC_NOTIFS_ENDPOINT=http://localhost:8080 yarn run dev",
"build": "next build",
"vercel:build": "yarn build",
"start": "next start -p 5000",
"test": "jest",
"test:silent": "jest --silent",
"test:verbose": "jest --verbose",
"style": "yarn prettier --write . --ignore-path .gitignore",
"lint": "yarn eslint --ignore-path .gitignore --ext .js,.jsx,.ts,.tsx .",
"sass-lint": "yarn stylelint \"**/*.scss\"",
"generate:graphql": "graphql-codegen -r dotenv/config --config codegen.yml dotenv_config_path=.env.development",
"generate:graphql:fullstack": "NEXT_PUBLIC_GRAPHQL_ENDPOINT=http://localhost:4000 yarn run generate:graphql"
},
"dependencies": {
"@babel/plugin-proposal-decorators": "^7.12.12",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/plugin-transform-private-property-in-object": "^7.22.11",
"@types/axios": "^0.14.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/pg": "^7.14.7",
"@wojtekmaj/enzyme-adapter-react-17": "^0.4.1",
"amplitude-js": "^7.3.3",
"antd": "^4.16.9",
"async-retry": "^1.3.1",
"axios": "^0.21.1",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"cookie": "^0.4.1",
"dayjs": "^1.9.8",
"enzyme": "^3.11.0",
"graphql": "^15.4.0",
"graphql-request": "^3.4.0",
"interweave": "^12.6.0",
"is-mobile": "^2.2.2",
"jest-svg-transformer": "^1.0.0",
"js-yaml-loader": "^1.2.2",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.20",
"mock-local-storage": "^1.1.15",
"next": "12",
"pg": "^8.5.1",
"prop-types": "^15.7.2",
"query-string": "^6.13.7",
"rc-slider": "^10.0.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-infinite-scroll-component": "^5.1.0",
"react-phone-number-input": "^3.1.46",
"react-spinners": "^0.11.0",
"react-tooltip": "^4.2.11",
"react-transition-group": "^4.4.1",
"reflect-metadata": "^0.1.13",
"rollbar": "^2.19.4",
"sass": "^1.30.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^2.0.1",
"stylelint": "^15.6.2",
"stylelint-config-recommended-scss": "^12.0.0",
"swr": "^0.3.11",
"universal-cookie": "^4.0.4",
"use-deep-compare-effect": "^1.6.1",
"use-query-params": "^1.1.9",
"uuid": "^8.3.2",
"yaml-jest": "^1.0.5"
},
"devDependencies": {
"@babel/core": "^7.22.19",
"@graphql-codegen/cli": "1.20.0",
"@graphql-codegen/typescript": "1.20.0",
"@graphql-codegen/typescript-graphql-request": "^3.0.0",
"@graphql-codegen/typescript-operations": "1.17.13",
"@next/bundle-analyzer": "^10.0.4",
"@svgr/webpack": "^8.1.0",
"@types/amplitude-js": "^7.0.0",
"@types/cookie": "^0.4.0",
"@types/gtag.js": "^0.0.4",
"@types/jest": "^26.0.19",
"@types/lodash": "^4.14.166",
"@types/node": "^14.14.16",
"@types/react": "18.0.1",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"axios-mock-adapter": "^1.20.0",
"babel-jest": "^26.6.3",
"concurrently": "^5.3.0",
"docsify-cli": "^4.4.4",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.6",
"jest": "^26.6.3",
"next-compose-plugins": "^2.2.1",
"next-test-api-route-handler": "^1.1.3",
"postcss": "^8",
"prettier": "2.2.1",
"pretty-quick": "^3.1.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3",
"yarn-deduplicate": "^3.1.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"engines": {
"node": ">=18"
}
}