-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.72 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.72 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
{
"name": "quick-code",
"version": "0.1.0",
"author": "rimidalu",
"description": "It is a compact and intuitive code editor designed for developers who value simplicity and efficiency. With its help, you can quickly write, edit and test code without being distracted by unnecessary actions.",
"private": true,
"license": "BSD 3-Clause",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky",
"commitlint": "commitlint --edit",
"test": "jest"
},
"dependencies": {
"@monaco-editor/react": "^4.7.0-rc.0",
"clsx": "^2.1.1",
"next": "15.1.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sonner": "^1.7.1"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/jest": "^29.5.14",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^8",
"eslint-config-next": "15.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.11",
"postcss": "^8",
"prettier": "^3.4.2",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "^5"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"**/*.{json,yaml,yml,toml,css,md}": [
"prettier --write"
]
}
}