-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
119 lines (119 loc) · 3.73 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": "epos-next",
"version": "0.0.6",
"private": false,
"description": "epos-next",
"author": "Yaroslav Zotov",
"keywords": [
"gatsby"
],
"scripts": {
"develop": "NODE_ENV=development gatsby develop --https",
"start": "gatsby build && gatsby serve -p 8000",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"storybook": "start-storybook -p 6006 -s ./static",
"build-storybook": "build-storybook",
"cy:open": "cypress open",
"cy:run": "cypress run",
"test": "jest",
"test:e2e": "start-server-and-test develop http://localhost:8000 cy:open",
"test:e2e:ci": "start-server-and-test develop http://localhost:8000 cy:run",
"changelog": "auto-changelog --template changelog-template.hbs -p -u --commit-limit false",
"changelog-debug": "auto-changelog --template changelog-template.hbs -p --template json --output changelog-data.json",
"semantic-release": "semantic-release",
"commit": "cz",
"prepare": "husky install",
"release": "standard-version"
},
"dependencies": {
"@reduxjs/toolkit": "^1.7.1",
"axios": "^0.24.0",
"axios-rate-limit": "^1.3.0",
"babel-plugin-styled-components": "^2.0.2",
"dotenv": "^14.1.0",
"gatsby": "^4.5.3",
"gatsby-plugin-manifest": "^4.5.2",
"gatsby-plugin-offline": "^5.5.2",
"gatsby-plugin-sharp": "^4.5.2",
"gatsby-plugin-styled-components": "^5.5.0",
"gatsby-plugin-use-query-params": "^1.0.1",
"normalize.css": "^8.0.1",
"react": "^17.0.1",
"react-content-loader": "^6.0.3",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-redux": "^7.2.4",
"react-ripples": "^2.2.1",
"react-toastify": "^8.1.0",
"redux": "^4.1.0",
"styled-components": "^5.3.0",
"universal-cookie": "^4.0.4",
"use-query-params": "^1.2.2"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@reach/router": "^1.3.4",
"@storybook/addon-actions": "^6.4.13",
"@storybook/addon-docs": "^6.4.13",
"@storybook/addon-essentials": "^6.4.13",
"@storybook/addon-links": "^6.4.13",
"@storybook/react": "^6.4.13",
"@testing-library/cypress": "^8.0.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.1",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.9",
"@types/react-helmet": "^6.1.5",
"@types/react-redux": "^7.1.22",
"@types/redux-mock-store": "^1.0.3",
"@types/styled-components": "^5.1.20",
"auto-changelog": "^2.3.0",
"axe-core": "^4.3.2",
"axios-mock-adapter": "^1.19.0",
"babel-jest": "^27.4.6",
"babel-loader": "^8.2.2",
"babel-preset-gatsby": "^2.5.2",
"commitizen": "^4.2.4",
"cypress": "^9.2.1",
"cypress-axe": "^0.14.0",
"cypress-localstorage-commands": "^1.5.0",
"cypress-plugin-snapshots": "^1.4.4",
"cz-conventional-changelog": "3.3.0",
"eslint-config-airbnb": "^19.0.4",
"gatsby-plugin-sass": "^5.5.0",
"gatsby-plugin-typescript": "^4.5.2",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.4.7",
"jest-styled-components": "^7.0.5",
"mockdate": "^3.0.5",
"react-test-renderer": "^17.0.2",
"redux-mock-store": "^1.5.4",
"sass": "^1.48.0",
"standard-version": "^9.3.1",
"start-server-and-test": "^1.13.1",
"ts-jest": "^27.1.3"
},
"globals": {
"ts-jest": {
"diagnostics": false
}
},
"repository": {
"type": "git",
"url": "https://github.com/epos-next/web.git"
},
"publishConfig": {
"access": "restricted"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}