-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
136 lines (136 loc) · 4.68 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "advanced-project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"server": "node ./json-server/index.js",
"start": "webpack serve --port=5000",
"build:prod": "webpack --env mode=production",
"build:dev": "webpack --env mode=development",
"analyze": "webpack --env mode=production --env analyze=true",
"extract-i18next": "cross-env NODE_ENV=production babel --config-file ./i18next-extract-babel.config.json './src/**/*.{js,jsx,ts,tsx}' > .temp && shx rm -rf .temp",
"lint": "eslint \"**/*.{ts,tsx}\"",
"lint:fix": "eslint \"**/*.{ts,tsx}\" --fix",
"lint:scss": "stylelint \"**/*.scss\"",
"lint:scss:fix": "stylelint \"**/*.scss\" --fix",
"test:unit": "jest --config ./config/jest/jest.config.ts",
"test:ui": "loki test",
"test:ui:ok": "loki approve",
"test:ui:ci": "loki --requireReference --reactUri file:./storybook-static",
"test:ui:report": "npm run test:ui:json && npm run test:ui:html",
"test:ui:json": "node scripts/generate-visual-json-report.js",
"test:ui:html": "reg-cli --from .loki/report.json --report .loki/report.html",
"prepare": "husky install",
"storybook": "storybook dev -p 6006 -c ./config/storybook -s ./public",
"storybook:build": "storybook build -c ./config/storybook -s ./public"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@reduxjs/toolkit": "^1.9.3",
"axios": "^1.3.4",
"date-fns": "^3.6.0",
"i18next": "^22.4.9",
"i18next-browser-languagedetector": "^7.0.1",
"i18next-http-backend": "^2.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.50.1",
"react-i18next": "^12.1.5",
"react-redux": "^8.0.5",
"react-router-dom": "^6.8.0",
"react-transition-group": "^4.4.5"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@storybook/addon-actions": "^7.6.14",
"@storybook/addon-essentials": "^7.6.14",
"@storybook/addon-interactions": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/addon-onboarding": "1.0.11",
"@storybook/blocks": "^7.6.14",
"@storybook/cli": "^7.6.14",
"@storybook/react": "^7.6.14",
"@storybook/react-webpack5": "^7.6.14",
"@storybook/test": "^7.6.14",
"@svgr/webpack": "^6.5.1",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.17",
"@types/react": "18.2.55",
"@types/react-dom": "18.2.19",
"@types/react-router-dom": "^5.3.3",
"@types/react-transition-group": "^4.4.5",
"@types/testing-library__jest-dom": "^5.14.5",
"@types/webpack": "^5.28.0",
"@types/webpack-bundle-analyzer": "^4.6.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.2",
"babel-plugin-i18next-extract": "^0.9.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.3",
"eslint": "^8.10.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.15",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"json-server": "^0.17.1",
"loki": "^0.34.0",
"mini-css-extract-plugin": "^2.7.2",
"postcss": "^8.4.35",
"prettier": "2.8.3",
"react-docgen-typescript-plugin": "^1.0.5",
"reg-cli": "^0.17.7",
"sass": "^1.58.0",
"sass-loader": "^13.2.0",
"shx": "^0.3.4",
"storybook": "^7.6.14",
"storybook-addon-mock": "^4.3.0",
"style-loader": "^3.3.1",
"stylelint": "^16.2.1",
"stylelint-config-recess-order": "^4.6.0",
"stylelint-config-standard-scss": "^13.0.0",
"stylelint-order": "^6.0.2",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"webpack": "^5.90.1",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"loki": {
"configurations": {
"chrome.laptop": {
"target": "chrome.app",
"width": 1366,
"height": 768,
"deviceScaleFactor": 1,
"mobile": false
},
"chrome.iphone7": {
"target": "chrome.app",
"preset": "iPhone 7"
}
}
}
}