-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.69 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
{
"name": "admin-project-inctagram",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3001",
"build": "eslint --fix src/**/*.{tsx,ts,jsx,js} --no-error-on-unmatched-pattern && stylelint --fix src/{,*/}*.{scss,css} --allow-empty-input && next build",
"start": "next start",
"format": "prettier --write src",
"lint": "eslint --fix src/**/*.{tsx,ts,jsx,js} --no-error-on-unmatched-pattern && stylelint --fix src/{,*/}*.{scss,css} --allow-empty-input",
"codegen:generate": "graphql-codegen",
"codegen:watch": "graphql-codegen --watch"
},
"dependencies": {
"@apollo/client": "^3.8.8",
"@belozerov-egor/ui-libs": "^0.0.14",
"@fontsource/inter": "^5.0.8",
"clsx": "^2.1.0",
"graphql": "^16.8.1",
"next": "14.0.4",
"nprogress": "^0.2.0",
"react": "^18",
"react-dom": "^18",
"react-infinite-scroll-component": "^6.1.0",
"subscriptions-transport-ws": "^0.11.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/client-preset": "^4.1.0",
"@graphql-codegen/near-operation-file-preset": "^3.0.0",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@graphql-codegen/typescript-react-apollo": "^4.1.0",
"@it-incubator/eslint-config": "^1.0.2",
"@it-incubator/prettier-config": "^0.1.2",
"@it-incubator/stylelint-config": "^1.0.3",
"@parcel/watcher": "^2.3.0",
"@types/node": "^20.10.6",
"@types/nprogress": "^0.2.3",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"sass": "^1.69.7",
"stylelint": "^15.11.0",
"typescript": "^5.3.3"
}
}