-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.13 KB
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
{
"name": "tiptracker",
"version": "0.1.0",
"private": false,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write .",
"lint": "eslint . --ext ts --ext tsx --ext js",
"secrets:login": "bw login tiptracker302@gmail.com",
"secrets:sync": "bw sync && bw get item tip-tracker | fx .notes > \".env.local\"",
"secrets:logout": "(bw logout || exit 0)"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run type-check"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"npm run lint",
"npm run format"
]
},
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@mobiscroll/react": "https://npm.mobiscroll.com/@mobiscroll/react-trial/-/react-trial-5.1.1.tgz",
"@nivo/bar": "^0.67.0",
"@nivo/core": "^0.67.0",
"@nivo/line": "^0.67.0",
"@nivo/pie": "^0.67.0",
"bcrypt": "^5.0.0",
"bootstrap": "^4.6.0",
"classnames": "^2.2.6",
"date-fns": "^2.16.1",
"moment": "^2.29.1",
"mongoose": "^5.11.19",
"mysql": "^2.18.1",
"next": "10.0.5",
"next-auth": "^3.4.2",
"react": "17.0.1",
"react-bootstrap": "^1.4.3",
"react-csv": "^2.0.3",
"react-data-grid": "^7.0.0-canary.36",
"react-datasheet": "^1.4.9",
"react-datepicker": "^3.4.1",
"react-dom": "17.0.1",
"react-hook-form": "^6.15.3",
"react-icons": "^4.1.0",
"react-time-picker": "^4.1.2",
"serverless-mysql": "^1.5.4"
},
"devDependencies": {
"@bitwarden/cli": "^1.13.3",
"@testing-library/react": "^11.2.3",
"@types/next-auth": "^3.1.24",
"@types/node": "^14.14.22",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"dotenv": "^8.2.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-react": "^7.22.0",
"fx": "^20.0.2",
"husky": "^4.3.8",
"identity-obj-proxy": "^3.0.0",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"typescript": "^4.1.3"
}
}