-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
142 lines (142 loc) · 4.49 KB
/
package.json
File metadata and controls
142 lines (142 loc) · 4.49 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "development-documentation-system",
"version": "1.0.0",
"description": "Comprehensive development documentation system with standards, guidelines, and automation tools",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:unit": "jest --testPathPattern=unit",
"test:integration": "jest --testPathPattern=integration",
"test:e2e": "playwright test",
"test:security": "npm audit && snyk test",
"docs:dev": "next dev",
"docs:build": "next build",
"docs:export": "next build && next export",
"docs:update": "node scripts/update-docs.js",
"docs:validate": "node scripts/validate-docs.js",
"changelog:generate": "conventional-changelog -p angular -i CHANGELOG.md -s",
"changelog:release": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"commit": "git-cz",
"commit:retry": "git-cz --retry",
"setup-hooks": "husky install",
"verify-setup": "node scripts/verify-setup.js",
"quality-check": "npm run lint && npm run format:check && npm run type-check && npm test",
"pre-commit": "lint-staged",
"pre-push": "npm run quality-check",
"release:patch": "npm version patch && npm run changelog:generate && git push --follow-tags",
"release:minor": "npm version minor && npm run changelog:generate && git push --follow-tags",
"release:major": "npm version major && npm run changelog:generate && git push --follow-tags",
"migrate-imports": "node scripts/migrate-imports.js",
"deploy": "./scripts/deploy.sh",
"deploy:pages": "./scripts/deploy-github-pages.sh",
"validate-imports": "node scripts/validate-imports.js",
"security:audit": "npm audit && snyk test",
"security:fix": "npm audit fix",
"deps:update": "npm update && npm audit fix",
"deps:check": "npm outdated",
"standards:check": "node scripts/check-standards.js",
"standards:apply": "node scripts/apply-standards.js"
},
"keywords": [
"documentation",
"development",
"standards",
"guidelines",
"typescript",
"react",
"testing",
"security",
"devops"
],
"author": "Development Standards Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/your-org/docs.git"
},
"bugs": {
"url": "https://github.com/your-org/docs/issues"
},
"homepage": "https://github.com/your-org/docs#readme",
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@types/jest": "^29.5.8",
"@types/marked": "^5.0.2",
"@types/node": "^20.9.0",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@types/react-syntax-highlighter": "^15.5.11",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"conventional-changelog-cli": "^4.1.0",
"eslint": "^8.54.0",
"eslint-config-next": "^14.0.3",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"prettier": "^3.1.0",
"typescript": "^5.3.2"
},
"dependencies": {
"@playwright/test": "^1.39.0",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.5.1",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"marked": "^9.1.6",
"next": "^14.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-syntax-highlighter": "^15.5.0",
"snyk": "^1.1260.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"commitizen": {
"path": "cz-conventional-changelog"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}