forked from code-a2z/code-a2z
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.59 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.59 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
57
58
59
{
"name": "code-a2z",
"author": "Avdhesh Varshney",
"license": "ISC",
"description": "Code A2Z is a collaborative blogging platform for developers and writers to create, manage, and share projects with markdown support, customizable templates, and community contributions.",
"version": "1.1.1",
"keywords": [
"code-a2z",
"code a2z",
"collaboration",
"platform",
"open-source",
"projects"
],
"type": "commonjs",
"main": "index.js",
"homepage": "https://github.com/Code-A2Z/code-a2z#readme",
"bugs": {
"url": "https://github.com/Code-A2Z/code-a2z/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Code-A2Z/code-a2z.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"frontend": "cd frontend && npm run dev",
"backend": "cd backend && npm run dev",
"dev": "concurrently -n \"FRONTEND,BACKEND\" -c \"bgBlue.bold,bgMagenta.bold\" \"npm run frontend\" \"npm run backend\"",
"prepare": "husky install"
},
"devDependencies": {
"@eslint/css": "^0.10.0",
"@eslint/js": "^9.34.0",
"@eslint/json": "^0.13.1",
"concurrently": "^9.2.0",
"eslint": "^9.34.0",
"eslint-plugin-react": "^7.37.5",
"globals": "^16.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"prettier": "^3.6.2"
},
"lint-staged": {
"frontend/src/**/*.{html,ts,scss,js,jsx,tsx}": [
"prettier --write",
"eslint --fix"
],
"backend/**/*.js": [
"prettier --write",
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}