Skip to content
This repository was archived by the owner on Mar 10, 2023. It is now read-only.

Commit a8d5ab1

Browse files
committed
move website into package
1 parent 6d5152e commit a8d5ab1

File tree

129 files changed

+10086
-1417
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

129 files changed

+10086
-1417
lines changed

.eslintrc

+1-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
"react/react-in-jsx-scope": "off",
1212
"react/require-default-props": "off",
1313
"jsx-a11y/anchor-is-valid": "off",
14-
"import/extensions": ["error", "never", { "css": "ignorePackages", "json": "always" }],
15-
"import/no-unresolved": "off" // comment this out during development
14+
"import/extensions": ["error", "never", { "css": "ignorePackages", "json": "always" }]
1615
}
1716
}

.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
10.9.0

.prettierrc

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"singleQuote": true,
3+
"trailingComma": "all"
4+
}

README.md

+14

package.json

+7
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@
1313
"build": "cd website && next build",
1414
"start": "next start -p 8080"
1515
},
16+
"bolt": {
17+
"version": "^0.22.1",
18+
"workspaces": [
19+
"packages/*"
20+
]
21+
},
1622
"dependencies": {
1723
"@atlaskit/avatar": "^14.1.8",
1824
"@atlaskit/button": "^8.2.4",
@@ -36,6 +42,7 @@
3642
"@zeit/next-css": "^1.0.1",
3743
"@zeit/next-mdx": "^1.2.0",
3844
"babel-plugin-transform-flow-strip-types": "^6.22.0",
45+
"bolt": "^0.22.6",
3946
"command-line-args": "^5.0.2",
4047
"emotion": "^9.0.1",
4148
"emotion-server": "^9.2.12",
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

packages/website/package.json

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
{
2+
"name": "@bright-docs/website",
3+
"version": "1.0.0",
4+
"description": "The Bright website documenter",
5+
"main": "index.js",
6+
"license": "MIT",
7+
"private": true,
8+
"scripts": {
9+
"test": "jest",
10+
"dev": "node generate-pages.js --config=website-dev-config.json && FORCE_EXTRACT_REACT_TYPES=true next dev",
11+
"build": "next build",
12+
"start": "next start"
13+
},
14+
"dependencies": {
15+
"@atlaskit/avatar": "^14.1.8",
16+
"@atlaskit/button": "^8.2.4",
17+
"@atlaskit/css-reset": "^3.0.5",
18+
"@atlaskit/docs": "^6.0.2",
19+
"@atlaskit/drawer": "^2.7.1",
20+
"@atlaskit/dropdown-menu": "^6.1.26",
21+
"@atlaskit/dynamic-table": "^10.0.23",
22+
"@atlaskit/icon": "^16.0.1",
23+
"@atlaskit/logo": "^9.1.0",
24+
"@atlaskit/navigation-next": "^4.1.2",
25+
"@atlaskit/quick-search": "^5.2.5",
26+
"@atlaskit/section-message": "^1.0.17",
27+
"@atlaskit/table-tree": "^5.0.7",
28+
"@atlaskit/theme": "^6.0.0",
29+
"@atlaskit/tree": "^4.1.11",
30+
"@babel/preset-flow": "^7.0.0",
31+
"@mdx-js/loader": "^0.17.5",
32+
"@mdx-js/mdx": "^0.17.5",
33+
"@mdx-js/tag": "^0.17.5",
34+
"@zeit/next-css": "^1.0.1",
35+
"@zeit/next-mdx": "^1.2.0",
36+
"babel-plugin-transform-flow-strip-types": "^6.22.0",
37+
"bolt": "^0.22.6",
38+
"command-line-args": "^5.0.2",
39+
"emotion": "^9.0.1",
40+
"emotion-server": "^9.2.12",
41+
"express": "^4.16.4",
42+
"extract-react-types-loader": "^0.3.0",
43+
"fs-extra": "^7.0.1",
44+
"git-url-parse": "^11.1.2",
45+
"glob": "^7.1.3",
46+
"jest-fixtures": "^0.6.0",
47+
"lodash.capitalize": "^4.2.1",
48+
"lodash.debounce": "^4.0.8",
49+
"lodash.flatmap": "^4.5.0",
50+
"lodash.snakecase": "^4.1.1",
51+
"next": "^7.0.2",
52+
"outdent": "^0.7.0",
53+
"pretty-proptypes": "^0.6.0",
54+
"prop-types": "^15.6.2",
55+
"react": "^16.7.0",
56+
"react-addons-text-content": "^0.0.4",
57+
"react-dom": "^16.7.0",
58+
"rimraf": "^2.6.3",
59+
"styled-components": "^3.2.6",
60+
"title-case": "^2.1.1"
61+
},
62+
"devDependencies": {}
63+
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

website/package.json

-16
This file was deleted.

0 commit comments

Comments
 (0)