-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.17 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.17 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
{
"name": "chat_sample",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:ts": "yarn dev & yarn ts:watch",
"build": "next build",
"start": "next start",
"lint": "next lint",
"ts": "tsc --noEmit --incremental",
"ts:watch": "yarn ts --watch"
},
"dependencies": {
"framer-motion": "^4.1.17",
"next": "11.0.1",
"next-i18next": "^8.5.1",
"polished": "^4.1.3",
"react": "17.0.2",
"react-dom": "17.0.2",
"styled-components": "^5.3.0"
},
"devDependencies": {
"@types/react": "17.0.11",
"@types/styled-components": "^5.1.10",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.28.0",
"babel-plugin-inline-react-svg": "^2.0.1",
"babel-plugin-styled-components": "^1.12.0",
"eslint": "^7.29.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-next": "11.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"prettier": "2.3.2",
"svgo": "^2.3.1",
"typescript": "^4.3.4"
}
}