-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.86 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.86 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
{
"name": "@raini/raini.dev",
"private": true,
"description": "Raini.dev is an open sourced online learning and teaching space. Learn programming, marketing, data science and more. Empowered by professionals from all over the world.",
"version": "0.0.0-dev",
"license": "MPL-2.0",
"scripts": {
"build": "gatsby build",
"clean": "gatsby clean",
"serve": "gatsby serve",
"develop": "cross-env GATSBY_GRAPHQL_IDE=playground gatsby develop",
"format": "prettier --write **/*.md src/**/*.{ts,tsx}",
"start": "npm run develop",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\"",
"analyze": "cross-env ANALYZE_BUNDLE_SIZE=true gatsby build",
"lighthouse": "lighthouse http://localhost:9000 --output-path=./lighthouse.html",
"lint:eslint": "eslint src/",
"lint:prettier:md": "prettier **/*.md --list-different"
},
"dependencies": {
"@deckdeckgo/highlight-code": "^1.1.0",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@mdx-js/mdx": "^1.6.4",
"@mdx-js/react": "^1.6.4",
"@raini/pipes": "^1.3.0",
"@raini/switch": "^1.1.2",
"gatsby": "^2.24.91",
"gatsby-background-image": "^1.1.1",
"gatsby-image": "^2.4.5",
"gatsby-plugin-accessibilityjs": "^1.0.3",
"gatsby-plugin-canonical-urls": "^2.3.2",
"gatsby-plugin-emotion": "^4.3.2",
"gatsby-plugin-google-analytics": "^2.3.2",
"gatsby-plugin-manifest": "^2.4.9",
"gatsby-plugin-mdx": "^1.2.12",
"gatsby-plugin-mdx-prismjs": "^1.0.4",
"gatsby-plugin-netlify": "^2.3.3",
"gatsby-plugin-nprogress": "^2.3.2",
"gatsby-plugin-offline": "^3.2.7",
"gatsby-plugin-react-helmet": "^3.3.2",
"gatsby-plugin-robots-txt": "^1.5.3",
"gatsby-plugin-sharp": "^2.6.43",
"gatsby-plugin-sitemap": "^2.4.3",
"gatsby-plugin-typescript": "^2.4.3",
"gatsby-remark-highlight-code": "^1.4.0",
"gatsby-remark-images": "^3.3.8",
"gatsby-source-filesystem": "^2.3.8",
"gatsby-transformer-sharp": "^2.5.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.0.0"
},
"devDependencies": {
"@types/node": "^14.0.5",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-helmet": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^3.0.0",
"@typescript-eslint/parser": "^3.0.0",
"cross-env": "^7.0.2",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"gatsby-plugin-webpack-bundle-analyzer": "^1.0.5",
"lighthouse": "^6.0.0",
"prettier": "^2.0.5",
"typescript": "^3.9.3"
},
"repository": {
"type": "git",
"url": "https://github.com/raini-dev/raini"
},
"browserslist": [
"last 2 versions"
]
}