-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.79 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
93
94
95
96
97
98
99
100
101
102
103
{
"name": "portfolio-frontend",
"version": "2.6.0",
"private": true,
"type": "module",
"scripts": {
"local": "next dev",
"dev": "sst bind next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --fix",
"prettier": "npx prettier . --write",
"check": "npx prettier . --check && next lint",
"prepare": "node .husky/install.mjs",
"precommit": "npx prettier . --write && npm run lint",
"cm": "git add . && npm run git:all && cz",
"git:all": "git diff --cached --name-status --diff-filter=ACDMRTUXB*",
"semver": "semantic-release --no-ci",
"deploy": "sst deploy --stage production"
},
"dependencies": {
"@commitlint/types": "^19.0.3",
"@heroicons/react": "^2.1.1",
"axios": "^1.6.8",
"dateformat": "^5.0.3",
"framer-motion": "^11.0.8",
"next": "14.2.3",
"noisejs": "^2.1.0",
"react": "^18",
"react-animated-numbers": "^0.18.0",
"react-dom": "^18",
"react-type-animation": "^3.2.0",
"sharp": "^0.33.3"
},
"devDependencies": {
"@commitlint/cli": "^19.2.0",
"@commitlint/config-conventional": "^19.1.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.0.2",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^13.0.0",
"@types/react": "^18.2.77",
"autoprefixer": "^10.0.1",
"aws-cdk-lib": "2.140.0",
"commitizen": "^4.3.0",
"commitlint": "^19.2.0",
"commitlint-config-gitmoji": "^2.3.1",
"constructs": "10.3.0",
"conventional-changelog-gitmoji-config": "^1.5.2",
"cz-conventional-changelog": "^3.3.0",
"cz-gitmoji-adapter": "^2.0.0",
"eslint": "^9",
"eslint-config-next": "14.2.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss": "^8",
"prettier": "3.2.5",
"semantic-release-config-gitmoji": "^1.5.3",
"semantic-release-gitmoji": "^1.6.5",
"sst": "^2.41.4",
"tailwindcss": "^3.4.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-gitmoji-adapter",
"useEmoji": true
},
"cz-gitmoji-adapter": {
"scopes": [
"login",
"api",
"auth",
"ci/cd",
"infrastructure",
"deployment",
"backup",
"recovery",
"release",
"init",
"runner",
"watcher",
"config",
"web-server",
"proxy"
],
"questions": {
"scope": "Specify a scope: "
}
}
},
"repository": {
"type": "git",
"url": "https://github.com/zhavir/portfolio-frontend"
},
"bugs": {
"url": "https://github.com/zhavir/portfolio-frontend/issues"
},
"homepage": "https://github.com/zhavir/portfolio-frontend#readme",
"publishConfig": {
"access": "restricted"
}
}