forked from luizgustavofs/Parking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.76 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
{
"name": "parking",
"version": "0.1.0",
"private": false,
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"prepare": "husky install"
},
"dependencies": {
"@reduxjs/toolkit": "^1.8.1",
"axios": "^0.27.2",
"i18next": "^21.6.16",
"identity-obj-proxy": "^3.0.0",
"next": "12.1.5",
"react": "18.1.0",
"react-confirm-alert": "^2.8.0",
"react-dom": "18.1.0",
"react-i18next": "^11.16.7",
"react-input-mask": "^2.0.4",
"react-loading": "^2.0.3",
"react-redux": "^8.0.1",
"react-toastify": "^8.2.0",
"redux": "^4.2.0",
"redux-persist": "^6.0.0",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@testing-library/dom": "^8.13.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.1.1",
"@types/node": "17.0.30",
"@types/react": "18.0.8",
"@types/react-dom": "18.0.3",
"@types/react-input-mask": "^3.0.1",
"@types/react-test-renderer": "^18.0.0",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"axios-mock-adapter": "^1.20.0",
"babel-jest": "^28.0.3",
"babel-plugin-styled-components": "^1.12.0",
"eslint": "8.14.0",
"eslint-config-next": "12.1.5",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^28.0.3",
"jest-dom": "^4.0.0",
"jest-environment-jsdom": "^28.0.2",
"lint-staged": "^12.3.7",
"prettier": "^2.6.2",
"react-test-renderer": "^18.1.0",
"typescript": "4.6.4"
}
}