-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.41 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.41 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
{
"name": "savetchuk.com",
"version": "1.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"next dev\" \"next lint\"",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"release": "standard-version"
},
"dependencies": {
"@babel/helper-module-imports": "^7.18.6",
"@fortawesome/free-solid-svg-icons": "^6.3.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@tailwindcss/forms": "^0.5.7",
"@vercel/analytics": "^1.0.1",
"autoprefixer": "^10.4.16",
"babel-plugin-macros": "^3.1.0",
"concurrently": "^6.4.0",
"next": "^13.5.7-canary.37",
"normalize.css": "^8.0.1",
"postcss": "^8.4.32",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.43.5",
"tailwindcss": "^3.3.5"
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@types/node": "^18.13.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"cz-conventional-changelog": "3.3.0",
"eslint": "7",
"eslint-config-next": "^13.5.7-canary.37",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"prettier": "^3.1.0",
"prettier-plugin-tailwindcss": "^0.5.7",
"standard-version": "^9.3.2",
"typescript": "^4.9.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}