-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 3.02 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
{
"name": "agenda-so",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"type-check": "tsc --pretty --noEmit",
"lint": "eslint . --ext ts --ext tsx --ext js",
"format": "prettier --write **/*.{js,ts,tsx}"
},
"dependencies": {
"@ant-design/icons": "^4.3.0",
"@apollo/client": "^3.3.12",
"@vonage/server-sdk": "^2.10.4",
"antd": "^4.9.4",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"express-pino-logger": "^5.0.0",
"firebase": "^8.2.1",
"framer-motion": "^3.2.1",
"fs": "^0.0.1-security",
"graphql": "^15.5.0",
"nexmo": "^2.9.1",
"next": "10.0.3",
"next-redux-wrapper": "^6.0.2",
"node-fetch": "^2.6.1",
"pino-colada": "^2.1.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-icons": "^3.11.0",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"redux-create-reducer": "^2.0.0",
"redux-logger": "^3.0.6",
"redux-saga": "^1.1.3",
"styled-components": "^5.2.1",
"uuid": "^8.3.2",
"uuidv4": "^6.2.6"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@testing-library/react": "^11.2.5",
"@types/antd": "^1.0.0",
"@types/node": "^14.14.14",
"@types/node-fetch": "^2.5.7",
"@types/react": "^17.0.0",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.8",
"@types/redux-logger": "^3.0.7",
"@types/styled-components": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-root-import": "^6.6.0",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.2.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest-dom": "^3.2.4",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.1.0",
"eslint-plugin-simple-import-sort": "^5.0.3",
"husky": "^4.2.5",
"identity-obj-proxy": "^3.0.0",
"lint-staged": "^10.2.4",
"prettier": "^2.0.5",
"twilio": "^3.54.1",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --quiet --fix"
],
"*.{json,md,html}": [
"prettier --write"
]
}
}