-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"prepare": "husky install",
"test": "jest",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@babel/eslint-parser": "^7.18.2",
"@next/bundle-analyzer": "^12.1.6",
"@svgr/webpack": "^6.2.1",
"husky": "^8.0.1",
"jest": "^28.1.1",
"lint-staged": "^13.0.3",
"next": "12.1.6",
"react": "18.2.0",
"react-dom": "18.1.0",
"react-is": "^18.2.0",
"styled-components": "^5.3.5",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/plugin-transform-runtime": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/preset-typescript": "^7.18.6",
"@next/eslint-plugin-next": "^12.1.6",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/jest": "^28.1.3",
"@types/react": "^18.0.9",
"@types/styled-components": "^5.1.25",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.0.0",
"babel-plugin-import": "^1.13.5",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-styled-components": "^2.0.7",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"eslint": "8.15.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"parser": "link:@types/@typescript-eslint/parser",
"prettier": "^2.6.2",
"typescript": "^4.6.4",
"webpack": "^5.72.1"
}
}