-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.63 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.63 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
{
"name": "@carrot-kpi/docs",
"private": true,
"version": "0.0.1",
"description": "Carrot protocol documentation portal.",
"author": "Federico Luzzi <federico.luzzi@protonmail.com>",
"license": " GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/carrot-kpi/docs.git"
},
"bugs": {
"url": "https://github.com/carrot-kpi/docs/issues"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "next lint --fix . && prettier --write .",
"postinstall": "rimraf ./node_modules/flexsearch/index.d.ts",
"commitlint": "commitlint -e",
"prepare": "husky install"
},
"dependencies": {
"@carrot-kpi/ui": "^0.48.3",
"@carrot-kpi/switzer-font": "^0.1.0",
"@fontsource/ibm-plex-mono": "^5.0.3",
"dayjs": "^1.11.8",
"flexsearch": "^0.7.31",
"next": "^13.4.5",
"nextra": "2.7.1",
"nextra-theme-docs": "2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@types/node": "20.3.1",
"autoprefixer": "^10.4.14",
"class-variance-authority": "^0.6.0",
"eslint": "^8.41.0",
"eslint-config-next": "13.4.5",
"husky": "^8.0.3",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"react-use": "^17.4.0",
"rimraf": "^5.0.1",
"tailwindcss": "^3.3.2",
"typescript": "^5.0.4"
}
}