-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.94 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.94 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
{
"name": "analytics",
"version": "0.0.10",
"private": true,
"scripts": {
"dev": "next dev",
"watch": "tsc -w -p ./tsconfig.json",
"build": "next build",
"build:export": "next build && next export",
"start": "next start -p 8080",
"prepare": "husky install",
"pre-commit": "lint-staged",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"docker": "chmod +x docker.sh && ./docker.sh",
"release": "standard-version",
"post-release": "git push --follow-tags"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"npm run lint:fix",
"npm run prettier:fix"
]
},
"dependencies": {
"@chakra-ui/icons": "^2.0.17",
"@chakra-ui/react": "^2.4.9",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@reduxjs/toolkit": "^1.9.3",
"@sendgrid/mail": "^7.7.0",
"bcryptjs": "^2.4.3",
"formik": "^2.2.9",
"framer-motion": "^10.0.0",
"is-empty": "^1.2.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.5.3",
"next": "latest",
"next-redux-wrapper": "^8.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-fast-marquee": "^1.3.5",
"react-redux": "^8.0.5",
"react-select": "^5.7.0",
"react-windowed-select": "^5.1.0",
"redux-persist": "^6.0.0",
"yup": "^1.0.1"
},
"devDependencies": {
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@types/bcryptjs": "^2.4.2",
"@types/is-empty": "^1.2.1",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^20.0.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"eslint": "^8.35.0",
"eslint-config-next": "^13.2.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.0",
"standard-version": "^9.5.0",
"typescript": "^5.0.0"
}
}