-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.3 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
{
"name": "nocode-nobug",
"private": true,
"description": "No Code, No Bug. A blog with tech articles that might be helpful. Or not! A blog by Alexandre Le Lain.",
"version": "0.1.0",
"author": "Alexandre Le Lain <lelain.alexandre@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/alexandre-lelain/nocode-nobug"
},
"engines": {
"node": ">=12.13.0"
},
"keywords": [
"NoCode NoBug",
"Tech",
"Articles",
"Blog"
],
"license": "MIT",
"scripts": {
"build": "yarn clean && gatsby build",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"lint": "yarn eslint --cache src/**/*.{js,tsx,ts}",
"check-types": "tsc",
"start": "gatsby develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"prepare": "husky install",
"validate": "yarn lint && yarn check-types"
},
"dependencies": {
"@material-ui/core": "^4.12.3",
"assert": "^2.0.0",
"components-extra": "^3.2.1",
"gatsby": "^4.2.0",
"gatsby-plugin-alias-imports": "^1.0.5",
"gatsby-plugin-image": "^2.2.0",
"gatsby-plugin-manifest": "^4.2.0",
"gatsby-plugin-material-ui": "^3.0.1",
"gatsby-plugin-offline": "^5.2.0",
"gatsby-plugin-react-helmet": "^5.2.0",
"gatsby-plugin-robots-txt": "^1.6.14",
"gatsby-plugin-sharp": "^4.2.0",
"gatsby-plugin-sitemap": "^5.2.0",
"gatsby-plugin-styled-components": "^5.2.0",
"gatsby-plugin-typescript": "^4.2.0",
"gatsby-remark-copy-linked-files": "^5.2.0",
"gatsby-source-filesystem": "^4.2.0",
"gatsby-transformer-remark": "^5.2.0",
"gatsby-transformer-sharp": "^4.2.0",
"js-extra": "^1.7.1",
"lodash-es": "^4.17.21",
"prismjs": "^1.25.0",
"react": "^17.0.2",
"react-children-utilities": "^2.6.3",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-markdown": "^7.1.0",
"react-theme-mode": "^1.1.0",
"styled-components": "^5.3.3"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@types/styled-components": "^5.1.15",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"dotenv": "^10.0.0",
"eslint": "^8.3.0",
"eslint-plugin-react": "^7.27.1",
"husky": "^7.0.4",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.2",
"typescript": "^4.5.2"
}
}