-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.22 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "chop-logic-cms",
"version": "0.1.0",
"private": true,
"description": "Content management system for Chop Logic Portal",
"scripts": {
"build": "strapi build",
"console": "strapi console",
"deploy": "strapi deploy",
"dev": "strapi develop",
"start": "strapi start",
"strapi": "strapi",
"upgrade": "npx @strapi/upgrade latest",
"upgrade:dry": "npx @strapi/upgrade latest --dry",
"format": "biome format --write",
"lint": "biome check",
"lint:errors": "biome check --diagnostic-level error --max-diagnostics 100",
"lint:warnings": "biome check --diagnostic-level warn --max-diagnostics 100",
"lint:fix": "biome check --write",
"test": "jest --watch",
"test:ci": "jest --passWithNoTests --runInBand",
"test:coverage": "jest --coverage",
"typecheck": "tsc --pretty --noEmit",
"prepare": "husky"
},
"dependencies": {
"@strapi/plugin-cloud": "5.49.0",
"@strapi/plugin-graphql": "5.49.0",
"@strapi/plugin-users-permissions": "5.49.0",
"@strapi/strapi": "5.49.0",
"better-sqlite3": "12.11.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "^6.0.0",
"styled-components": "^6.4.3"
},
"devDependencies": {
"@biomejs/biome": "^2.5.1",
"@commitlint/cli": "^21.1.0",
"@commitlint/config-conventional": "^21.1.0",
"@types/jest": "^30.0.0",
"@types/node": "^26.0.1",
"@types/react": "^18",
"@types/react-dom": "^18",
"husky": "^9.1.7",
"jest": "^30.4.2",
"lint-staged": "^17.0.8",
"ts-jest": "^29.4.11",
"typescript": "^6"
},
"engines": {
"node": ">=20.0.0 <=24.x.x",
"npm": ">=6.0.0"
},
"strapi": {
"uuid": "aefa6929-966f-49f7-af70-d870f100b8ee",
"installId": "edefd3354f64a32a74c6759ed7d737e2769f350491c31d460051fb9417f6beeb"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChopLogic/chop-logic-cms.git"
},
"author": "Dmitrii Suroviagin",
"license": "MIT",
"bugs": {
"url": "https://github.com/ChopLogic/chop-logic-cms/issues"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.ts": [
"bash -c 'npm run typecheck'"
],
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"biome format --write",
"biome check --write",
"biome check --diagnostic-level error"
]
}
}