-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·50 lines (50 loc) · 1.39 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
{
"name": "hernande-monteiro",
"version": "1.5.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --coverage",
"test:watch": "jest --coverage --watch",
"pre-deploy": "npm run test && npm run build"
},
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@mui/material": "^5.9.0",
"@vercel/analytics": "^0.1.3",
"next": "^14.1.0",
"prettier": "^2.8.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.6.0",
"reactstrap": "^9.1.6",
"sharp": "^0.33.5"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/node": "^18.0.4",
"@types/react": "^18.0.15",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"autoprefixer": "^10.4.7",
"babel-loader": "^8.3.0",
"eslint": "^8.26.0",
"eslint-config-next": "^13.0.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-storybook": "^0.6.11",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.2.2",
"sass": "^1.55.0",
"sinon": "^14.0.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}