-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
42 lines (42 loc) · 1.18 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
{
"name": "nodeschool-vancouver-gatsby",
"private": true,
"description": "Website for nodeschool vancouver",
"version": "0.1.0",
"author": "Nodeschool YVR <organizers@nodeschoolyvr.com>",
"homepage": "https://nodeschool.io/vancouver/",
"dependencies": {
"gatsby": "^5.9.1",
"gatsby-plugin-manifest": "^5.8.0",
"gatsby-plugin-sentry": "^1.0.1",
"gatsby-source-filesystem": "^5.8.0",
"gatsby-theme-nodeschool": "^2.0.0",
"react": "^18.2.0"
},
"devDependencies": {
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-promise": "^6.1.1"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "TZ=UTC gatsby build",
"build:pp": "TZ=UTC gatsby build --prefix-paths",
"clean": "rm -rf public",
"develop": "gatsby develop -p 3000 -H 0.0.0.0",
"dev": "npm run develop",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/nodeschool/vancouver"
},
"bugs": {
"url": "https://github.com/nodeschool/vancouver/issues"
}
}