-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.51 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
{
"name": "shader-tutorial",
"private": true,
"description": "Learn about GPU shaders in a simple, relatively easy-to-digest format.",
"version": "1.0.0",
"author": "Sabarna Chakravarty <sabarnac@gmail.com>",
"dependencies": {
"@loadable/component": "^5.16.4",
"gatsby": "^5.14.1",
"gatsby-plugin-image": "^3.14.0",
"gatsby-plugin-manifest": "^5.14.0",
"gatsby-plugin-offline": "^6.14.0",
"gatsby-plugin-react-helmet": "^6.14.0",
"gatsby-plugin-sharp": "^5.14.0",
"gatsby-plugin-sitemap": "^6.14.0",
"gatsby-source-filesystem": "^5.14.0",
"gatsby-transformer-sharp": "^5.14.0",
"gl-matrix": "^3.4.3",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet": "^6.1.0",
"react-mathjax2": "^0.0.2",
"react-syntax-highlighter": "^15.6.1"
},
"devDependencies": {
"gh-pages": "^6.2.0",
"prettier": "^3.4.2"
},
"keywords": [
"gpu shader",
"gpu shaders",
"tutorial"
],
"license": "MIT",
"scripts": {
"build": "npm run clean && gatsby build --prefix-paths",
"develop": "npm run clean && gatsby develop -H 0.0.0.0",
"format": "prettier --write src/**/*.{js,jsx}",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"predeploy": "npm run build",
"deploy": "gh-pages -d public"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}