-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.29 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
{
"name": "takeus-front-mobile",
"packageManager": "[email protected]",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --ext ts,tsx .",
"test:coverage": "jest --watchAll=false --coverage",
"analyze": "ANALYZE=true next build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"jest": {
"coveragePathIgnorePatterns": [
"src/index.tsx"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
}
},
"dependencies": {
"@emotion/css": "^11.7.1",
"@emotion/react": "^11.7.1",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.6.0",
"@next/bundle-analyzer": "^12.1.0",
"await-to-js": "^3.0.0",
"axios": "^0.26.0",
"cross-env": "^7.0.3",
"next": "^12.0.10",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-google-login": "^5.2.2"
},
"devDependencies": {
"@babel/core": "^7.17.4",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@babel/runtime": "^7.17.2",
"@emotion/babel-plugin": "^11.7.2",
"@svgr/webpack": "^6.2.1",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@types/babel__core": "^7",
"@types/babel__preset-env": "^7",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.18",
"@types/prettier": "^2",
"@types/prop-types": "^15",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@types/testing-library__jest-dom": "^5",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/eslint-plugin-tslint": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"@yarnpkg/pnpify": "^3.1.1",
"babel-jest": "^27.5.1",
"babel-loader": "^8.2.3",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^8.9.0",
"eslint-config-next": "^12.0.10",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"ts-pattern": "^3.3.5",
"tslint": "^6.1.3",
"typescript": "^4.5.5",
"webpack": "^5.69.1"
}
}