-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.93 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
{
"name": "wineup-web",
"version": "0.1.0",
"private": true,
"homepage": "https://microservices-course-itmo.github.io/wineup-web",
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next export",
"start": "next start",
"lint": "eslint \"**/*.js\"",
"lint:fix": "eslint \"**/*.js\" --fix",
"storybook": "start-storybook -s ./public -p 6006",
"build-storybook": "build-storybook",
"test": "jest"
},
"dependencies": {
"axios": "^0.21.1",
"firebase": "^8.1.1",
"next": "9.5.3",
"react": "16.13.1",
"react-country-flag": "^2.3.0",
"react-dom": "16.13.1",
"react-router-dom": "^5.2.0",
"react-scroll": "^1.8.1",
"reactjs-popup": "^2.0.4",
"recoil": "^0.1.2",
"swiper": "^6.4.15"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/preset-env": "^7.13.9",
"@storybook/addon-actions": "^6.1.21",
"@storybook/addon-essentials": "^6.1.20",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-links": "^6.0.22",
"@storybook/react": "^6.1.20",
"babel-jest": "^26.6.3",
"babel-loader": "^8.1.0",
"eslint": "^7.8.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.1.5",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"husky": "^4.2.5",
"jest": "^26.6.3",
"jest-mock-axios": "^4.3.0",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"react-is": "^16.13.1",
"react-test-renderer": "^16.13.1",
"recoil": "^0.1.2",
"storybook-addon-jsx": "^7.3.4",
"storybook-addon-prettier-source": "^2.1.2",
"styled-jsx": "^3.4.4",
"ts-jest": "^26.5.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm run lint && npm run test"
}
},
"jest": {}
}