-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.64 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
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "spanner",
"version": "3.0.0",
"description": "Track your vehicle service easily",
"private": true,
"license": "MIT",
"scripts": {
"prepare": "husky install",
"lint": "next lint",
"lint:fix": "next lint --fix",
"test": "jest",
"deploy": "git push ash",
"deploy:next": "git push ash-next next:master",
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"engines": {
"node": "^16.13.1"
},
"lint-staged": {
"src/**/*.{ts,tsx}": "eslint --fix",
"pages/**/*.{ts,tsx}": "eslint --fix"
},
"author": "Nic Haynes <[email protected]> (https://nicinabox.com)",
"cacheDirectories": [
".next/cache",
"node_modules"
],
"devDependencies": {
"@babel/core": "^7.17.10",
"@next/eslint-plugin-next": "^12.1.5",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.1.1",
"@testing-library/react-hooks": "^8.0.0",
"@testing-library/user-event": "^14.1.1",
"@types/cookies": "^0.7.6",
"@types/jest": "^27.4.1",
"@types/marked": "^4.0.3",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"babel-jest": "^27.5.1",
"babel-loader": "^8.2.4",
"eslint": "^8.13.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.4.0",
"husky": "^7.0.4",
"identity-obj-proxy": "^3.0.0",
"ignore-loader": "^0.1.2",
"jest": "^27.5.1",
"lint-staged": "^12.4.1",
"nock": "^13.0.11",
"ts-jest": "^27.1.4",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"typescript": "^4.6.4"
},
"dependencies": {
"@bugsnag/js": "^7.10.1",
"@bugsnag/plugin-react": "^7.10.0",
"@chakra-ui/icons": "^2.0.15",
"@chakra-ui/react": "^2.4.6",
"@chakra-ui/styled-system": "^2.5.1",
"@chakra-ui/system": "^2.3.8",
"@chakra-ui/theme-tools": "^2.0.16",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"axios": "^0.26.1",
"axios-case-converter": "^0.9.0",
"cookies": "^0.8.0",
"date-fns": "^2.20.3",
"emotion-theming": "^11.0.0",
"eslint-config-next": "^13.1.1",
"framer-motion": "^6.3.3",
"http-proxy": "^1.18.1",
"lodash": "^4.17.21",
"marked": "^4.0.14",
"next": "^13.1.1",
"next-build-id": "^3.0.0",
"next-iron-session": "^4.1.12",
"qs": "^6.10.1",
"react": "^18.2.0",
"react-day-picker": "^8.0.4",
"react-dom": "^18.2.0",
"swr": "^1.3.0",
"url-pattern": "^1.0.3"
}
}