-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.03 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.03 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
{
"name": "chat-around",
"version": "1.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"release": "npx standard-version",
"lint": "next lint",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prepare": "husky install"
},
"dependencies": {
"@react-spring/web": "^9.4.2",
"@reduxjs/toolkit": "^1.7.2",
"axios": "^0.26.1",
"firebase": "^9.5.0",
"google-map-react": "^2.1.10",
"localforage": "^1.10.0",
"next": "12.0.4",
"next-pwa": "^5.4.6",
"next-redux-wrapper": "^7.0.5",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-redux": "^7.2.6",
"styled-components": "^5.3.0"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@storybook/addon-actions": "^6.4.9",
"@storybook/addon-essentials": "^6.4.9",
"@storybook/addon-links": "^6.4.9",
"@storybook/react": "^6.4.9",
"@svgr/webpack": "^5.5.0",
"@types/google-map-react": "^2.1.3",
"@types/googlemaps": "^3.43.3",
"@types/node": "16.11.10",
"@types/react": "17.0.37",
"@types/react-dom": "^17.0.11",
"@types/react-redux": "^7.1.22",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"babel-loader": "^8.2.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "7",
"eslint-config-next": "12.0.4",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-storybook": "^0.5.5",
"husky": "^7.0.0",
"lint-staged": "^12.3.4",
"prettier": "^2.5.1",
"storybook-addon-styled-component-theme": "^2.0.0",
"storybook-dark-mode": "^1.0.8",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "^4.5.5",
"url-loader": "^4.1.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}