-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.06 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.06 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "frontend_community_calendar",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"storybook": "start-storybook",
"test": "jest test --verbose"
},
"dependencies": {
"antd": "^3.26.6",
"axios": "^0.19.1",
"babel-plugin-import": "^1.13.0",
"country-region-dropdowns": "^0.3.1",
"env-hoc": "^1.2.7",
"es6-promise": "^4.2.8",
"google-map-react": "^1.1.5",
"isomorphic-fetch": "^2.2.1",
"js-cookie": "^2.2.1",
"jwt-decode": "^2.2.0",
"less": "^3.10.3",
"less-vars-to-js": "^1.3.0",
"moment": "^2.24.0",
"next": "^9.2.0",
"next-redux-wrapper": "^4.0.1",
"npm-install-global": "^1.0.0",
"prop-types": "^15.7.2",
"react": "16.12.0",
"react-country-region-selector": "^1.4.7",
"react-dom": "16.12.0",
"react-images-upload": "^1.2.7",
"react-items-carousel": "^2.8.0",
"react-paginate": "^6.3.2",
"react-redux": "^7.1.3",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"styled-components": "^4.4.1",
"validate.js": "^0.13.1"
},
"devDependencies": {
"@storybook/react": "^5.2.8",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.4.0",
"@zeit/next-less": "^1.0.1",
"babel-plugin-styled-components": "^1.10.6",
"conventional-changelog-conventionalcommits": "^4.2.3",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^3.1.0",
"jest": "^24.9.0",
"jest-next-dynamic": "^1.0.1",
"null-loader": "^3.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|ico|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/mocks/fileMock.js"
}
}
}