-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
85 lines (85 loc) · 2.67 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
{
"name": "lubimovka_frontend",
"version": "1.0.0",
"description": "Фронтенд проекта «Любимовка»",
"scripts": {
"postinstall": "next telemetry disable",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint:js": "next lint",
"lint:css": "stylelint src/**/*.css --cache --allow-empty-input --fix",
"lint": "npm-run-all lint:*",
"type-check": "tsc --noEmit --incremental",
"storybook": "start-storybook -s public -p 3001",
"build-storybook": "build-storybook -s public",
"update-typings": "node ops/update-typings.js",
"analyze": "ANALYZE=true next build",
"test:e2e": "NODE_ENV=test playwright test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Studio-Yandex-Practicum/lubimovka_frontend.git"
},
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/Studio-Yandex-Practicum/lubimovka_frontend/issues"
},
"homepage": "https://github.com/Studio-Yandex-Practicum/lubimovka_frontend#readme",
"dependencies": {
"@funboxteam/diamonds": "8.2.1",
"classnames": "2.3.1",
"date-fns": "2.29.3",
"express": "4.17.2",
"intersection-observer": "0.12.2",
"keen-slider": "6.8.5",
"lodash": "4.17.21",
"next": "12.0.8",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-focus-lock": "2.6.0",
"react-hook-mask": "1.1.11",
"swr": "2.1.0"
},
"devDependencies": {
"@babel/core": "7.15.5",
"@evilmartians/lefthook": "1.2.8",
"@faker-js/faker": "7.6.0",
"@next/bundle-analyzer": "13.1.2",
"@playwright/test": "1.30.0",
"@storybook/addon-actions": "6.3.8",
"@storybook/addon-essentials": "6.3.8",
"@storybook/addon-links": "6.3.8",
"@storybook/react": "6.3.8",
"@svgr/webpack": "5.5.0",
"@types/lodash": "4.14.191",
"@types/react": "17.0.20",
"@types/react-dom": "17.0.11",
"@typescript-eslint/eslint-plugin": "5.48.0",
"babel-loader": "8.2.2",
"cypress": "10.0.1",
"eslint": "8.3.0",
"eslint-config-next": "13.1.1",
"eslint-plugin-import": "2.27.5",
"msw": "0.47.4",
"npm-run-all": "4.1.5",
"openapi-typescript-codegen": "0.20.1",
"postcss": "8.3.9",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-import": "14.0.2",
"postcss-mixins": "8.1.0",
"postcss-nested": "5.0.6",
"postcss-preset-env": "6.7.0",
"postcss-pxtorem": "6.0.0",
"postcss-simple-vars": "6.0.3",
"sharp": "0.30.6",
"stylelint": "14.16.1",
"stylelint-config-idiomatic-order": "9.0.0",
"stylelint-config-standard": "29.0.0",
"tsconfig-paths-webpack-plugin": "3.5.1",
"typescript": "4.9.4"
},
"msw": {
"workerDirectory": "public"
}
}