Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ibm
GitHub Repository: ibm/watson-machine-learning-samples
Path: blob/master/cloud/ai-service-apps/nextjs-carbon-react-ui/package.json
6405 views
1
{
2
"name": "nextjs-carbon-react-ui",
3
"version": "0.1.0",
4
"private": true,
5
"repository": "[email protected]:dap/demo-gen-ai-flow-app.git",
6
"bugs": "https://github.ibm.com/dap/demo-gen-ai-flow-app/issues",
7
"license": "IBM",
8
"scripts": {
9
"dev": "next dev",
10
"build": "next build",
11
"start": "next start",
12
"lint": "next lint",
13
"lint:fix": "next lint --fix",
14
"format": "prettier --write \"**/*.{js,md,scss}\"",
15
"format:diff": "prettier --list-different \"**/*.{js,md,scss}\""
16
},
17
"dependencies": {
18
"@lexical/react": "^0.28.0",
19
"highlight.js": "^11.11.1",
20
"jsonwebtoken": "^9.0.2",
21
"lexical": "^0.28.0",
22
"next": "15.2.4",
23
"react": "19.0.0",
24
"react-dom": "19.0.0",
25
"react-transition-group": "^4.4.5"
26
},
27
"devDependencies": {
28
"@carbon/colors": "^11.20.0",
29
"@carbon/feature-flags": "^0.22.0",
30
"@carbon/icons-react": "^11.43.0",
31
"@carbon/layout": "^11.21.0",
32
"@carbon/react": "^1.62.0",
33
"@carbon/styles": "^1.61.0",
34
"@carbon/themes": "^11.37.0",
35
"@carbon/type": "^11.28.0",
36
"@commitlint/cli": "7.5.2",
37
"@commitlint/config-conventional": "7.5.0",
38
"@eslint/eslintrc": "^3",
39
"@microsoft/fetch-event-source": "^2.0.1",
40
"@types/node": "^20",
41
"@types/react": "19.0.12",
42
"@types/react-dom": "19.0.4",
43
"eslint": "^9",
44
"eslint-config-next": "15.2.4",
45
"husky": "1.3.1",
46
"lint-staged": "8.1.5",
47
"lodash": "^4.17.21",
48
"prettier": "^3.5.3",
49
"sass": "1.63.6",
50
"showdown": "2.1.0",
51
"typescript": "^5"
52
},
53
"browserslist": [
54
">0.2%",
55
"not dead",
56
"not ie <= 11",
57
"not op_mini all"
58
],
59
"husky": {
60
"hooks": {
61
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS",
62
"pre-commit": "lint-staged"
63
}
64
},
65
"commitlint": {
66
"extends": [
67
"@commitlint/config-conventional"
68
]
69
},
70
"lint-staged": {
71
"*.js": [
72
"prettier --cache --write",
73
"git add"
74
],
75
"*.{scss,css}": [
76
"prettier --cache --write",
77
"git add"
78
],
79
"*.md": [
80
"prettier --cache --write",
81
"git add"
82
]
83
},
84
"prettier": {
85
"jsxBracketSameLine": true,
86
"printWidth": 100,
87
"singleQuote": false,
88
"trailingComma": "es5"
89
},
90
"overrides": {
91
"@types/react": "19.0.12",
92
"@types/react-dom": "19.0.4"
93
}
94
}
95
96