-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
101 lines (101 loc) · 3.34 KB
/
package.json
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
{
"name": "terasology-web-presence",
"description": "Web Presence of Terasology - a Voxel Engine and Game",
"version": "1.1.0",
"private": "true",
"workspaces": [
".",
"plugins/source-terasology-modules",
"plugins/source-terasology-engine"
],
"author": "The Terasology Foundation",
"dependencies": {
"@reach/router": "^1.3.4",
"bootstrap": "^4.3.1",
"canvas": "^2.8.0",
"gatsby": "^5.9.1",
"gatsby-plugin-catch-links": "^5.3.0",
"gatsby-plugin-image": "^3.3.2",
"gatsby-plugin-manifest": "^5.3.1",
"gatsby-plugin-nprogress": "^5.3.0",
"gatsby-plugin-offline": "^6.3.1",
"gatsby-plugin-sass": "^6.3.1",
"gatsby-plugin-sharp": "^5.8.1",
"gatsby-plugin-sitemap": "^6.3.1",
"gatsby-plugin-twitter": "^5.3.1",
"gatsby-remark-autolink-headers": "^6.3.1",
"gatsby-remark-copy-linked-files": "^6.3.0",
"gatsby-remark-images": "^7.3.1",
"gatsby-remark-prismjs": "^7.3.0",
"gatsby-source-filesystem": "^5.3.1",
"gatsby-source-trello-board": "https://github.com/skaldarnar/gatsby-source-trello-board/#v2.0.0-rc.3",
"gatsby-transformer-remark": "^6.3.2",
"gatsby-transformer-sharp": "^5.3.1",
"html-react-parser": "^1.2.7",
"js-search": "^2.0.0",
"lodash.kebabcase": "^4.1.1",
"moment": "^2.29.2",
"moment-timezone": "^0.5.33",
"prismjs": "^1.16.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-github-corner": "^2.5.0",
"react-icons": "^3.7.0",
"react-multi-carousel": "^2.6.3",
"react-select": "^5.7.0",
"react-share": "^4.4.0",
"react-twitter-widgets": "^1.7.1",
"reactstrap": "^8.0.0",
"remarkable": "^2.0.1",
"slugify": "^1.6.5",
"url-join": "^4.0.0"
},
"devDependencies": {
"@microsoft/eslint-formatter-sarif": "^3.0.0",
"cli-glob": "^0.1.0",
"eslint": "^8.30.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"gatsby-cli": "^5.0.0",
"postcss": "^8.4.31",
"postcss-scss": "^4.0.6",
"prettier": "^2.8.1",
"remark-cli": "^11.0.0",
"remark-preset-lint-recommended": "^6.1.2",
"sass": "^1.52.3",
"stylelint": "^14.0.0",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-standard-scss": "^6.1.0"
},
"engines": {
"node": "^18.0.0"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"build:pp": "set NODE_OPTIONS=--no-experimental-fetch && gatsby build --prefix-paths",
"build": "set NODE_OPTIONS=--no-experimental-fetch && gatsby build",
"clean": "gatsby clean && rm -r src/generated",
"develop": "set NODE_OPTIONS=--no-experimental-fetch && gatsby develop",
"format-check:js": "prettier '**/*.{js,jsx}' --check --ignore-path=.eslintignore",
"format:js": "prettier '**/*.{js,jsx}' --write --ignore-path=.eslintignore",
"generate-images": "node ./scripts/image-generation.js",
"lint:css": "stylelint --ignore-path --ignore-path=.eslintignore '**/*.{css,scss}'",
"lint:js": "eslint --ext .js,.jsx .",
"lint:md": "remark blog/ docs/",
"serve:pp": "gatsby serve --prefix-paths",
"serve": "gatsby serve"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
}
}