-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.68 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 3.68 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
{
"version": "3.0.0",
"name": "gatsby-starter-lumen",
"description": "A minimal, lightweight and mobile-first starter for creating blazing-fast static blogs",
"main": "n/a",
"scripts": {
"develop": "yarn run clean && gatsby develop",
"build": "yarn run clean && gatsby build",
"deploy": "yarn run clean && gatsby build --prefix-paths && gh-pages -d public",
"clean": "rimraf .cache public",
"lint:js": "eslint --cache --ext .js,.jsx .",
"lint:scss": "stylelint \"src/**/*.scss\"",
"lint": "concurrently \"yarn run lint:js\" \"yarn run lint:scss\" \"yarn flow\"",
"test": "jest --config ./jest/jest-config.js",
"test:coverage": "jest --coverage --config ./jest/jest-config.js",
"test:watch": "jest --watch --config ./jest/jest-config.js",
"release": "standard-version"
},
"repository": "https://github.com/alxshelepenok/gatsby-starter-lumen",
"author": "Alexander Shelepenok <alxshelepenok@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=22.0.0"
},
"keywords": [
"gatsby",
"graphql",
"netlify",
"netlify-cms",
"pagination",
"categories",
"tags",
"prismjs",
"static",
"lost",
"blog",
"minimal",
"react",
"theme",
"starter",
"disqus"
],
"dependencies": {
"bluebird": "^3.7.2",
"classnames": "^2.5.1",
"gatsby": "^5.15.0",
"gatsby-link": "^5.15.0",
"gatsby-plugin-catch-links": "^5.15.0",
"gatsby-plugin-feed": "^5.15.0",
"gatsby-plugin-flow": "^4.15.0",
"gatsby-plugin-manifest": "^5.15.0",
"gatsby-plugin-netlify": "^5.1.1",
"gatsby-plugin-react-helmet": "^6.15.0",
"gatsby-plugin-remove-serviceworker": "^1.0.0",
"gatsby-plugin-sass": "^6.15.0",
"gatsby-plugin-sharp": "^5.15.0",
"gatsby-remark-autolink-headers": "^6.15.0",
"gatsby-remark-copy-linked-files": "^6.15.0",
"gatsby-remark-embed-gist": "^1.2.1",
"gatsby-remark-images": "^7.15.0",
"gatsby-remark-katex": "^7.15.0",
"gatsby-remark-prismjs": "^7.15.0",
"gatsby-remark-relative-images": "^2.0.5",
"gatsby-remark-responsive-iframe": "^6.15.0",
"gatsby-remark-smartypants": "^6.15.0",
"gatsby-source-filesystem": "^5.15.0",
"gatsby-transformer-remark": "^6.15.0",
"gatsby-transformer-sharp": "^5.15.0",
"invariant": "^2.2.4",
"katex": "^0.16.23",
"lodash": "^4.17.21",
"modern-normalize": "^3.0.1",
"moment": "^2.30.1",
"prismjs": "^1.30.0",
"react": "^18.3.1",
"react-disqus-comments": "^1.4.0",
"react-dom": "^18.3.1",
"react-helmet": "^6.1.0",
"sass": "^1.93.2"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/eslint-parser": "7.25.9",
"@babel/plugin-proposal-optional-chaining": "7.21.0",
"@babel/plugin-transform-flow-strip-types": "^7.25.9",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.25.9",
"autoprefixer": "10.4.21",
"babel-jest": "29.7.0",
"babel-preset-gatsby": "3.12.0",
"browserslist": "4.24.3",
"concurrently": "9.1.2",
"eslint": "8.51.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-jest": "27.4.2",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.33.2",
"eslint-watch": "8.0.0",
"flow-bin": "^0.254.2",
"flow-typed": "^4.1.0",
"gh-pages": "6.3.0",
"identity-obj-proxy": "3.0.0",
"jest": "29.7.0",
"jest-cli": "29.7.0",
"lost": "9.0.2",
"postcss-pxtorem": "6.0.0",
"react-test-renderer": "18.3.1",
"rimraf": "6.0.1",
"standard-version": "9.5.0",
"stylelint": "16.13.1",
"stylelint-config-recommended-scss": "15.0.1",
"stylelint-scss": "6.10.0",
"webpack-filter-warnings-plugin": "^1.2.1"
}
}