-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.64 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.64 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
{
"name": "github-well-architected",
"version": "1.0.0",
"description": "GitHub Well-Architected Framework",
"main": "index.js",
"directories": {
"content": "content"
},
"scripts": {
"test:functional": "export SITE_PORT=\"$(shuf -i 1024-65535 -n 1)\" && npx playwright test",
"test:unit": "jest",
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"watch": "webpack --mode development --watch",
"dev": "concurrently \"npm run watch\" \"hugo server --disableFastRender --noHTTPCache --watch --navigateToChanged\"",
"dev:ignore-cache": "concurrently \"npm run watch\" \"hugo server --ignoreCache\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/github/github-well-architected-internal.git"
},
"keywords": [
"GitHub",
"DevSecOps",
"github-well-architected",
"Universe",
"Workshop"
],
"author": "services@github.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/github/github-well-architected-internal/issues"
},
"homepage": "https://github.com/github/github-well-architected-internal#readme",
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/preset-env": "^7.28.3",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@playwright/test": "^1.56.0",
"@tailwindcss/cli": "^4.1.14",
"@types/jest": "^30.0.0",
"@types/node": "^24.7.1",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.1",
"babel-loader": "^10.0.0",
"concurrently": "^9.2.1",
"css-loader": "^7.1.2",
"dotenv": "^17.2.3",
"gray-matter": "^4.0.3",
"jest": "^30.2.0",
"markdownlint-cli": "^0.46.0",
"prettier": "^3.6.2",
"prettier-plugin-go-template": "^0.0.15",
"style-loader": "^4.0.0",
"tailwindcss": "^4.0.9",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"webpack": "^5.102.1",
"webpack-cli": "^6.0.1",
"yaml": "^2.8.1",
"yaml-lint": "^1.7.0"
},
"optionalDependencies": {
"@tailwindcss/oxide-linux-x64-gnu": "^4.0.1",
"lightningcss-linux-x64-gnu": "^1.30.2"
},
"dependencies": {
"@primer/octicons-react": "^19.19.0",
"@primer/react": "^37.31.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-markdown": "^10.1.0",
"rehype-external-links": "^3.0.0",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1"
},
"jest": {
"roots": [
"<rootDir>/src/js/"
],
"testRegex": "\\.(test)\\.[jt]sx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"transform": {
"^.+\\.(ts|tsx)$": "babel-jest"
}
}
}