This repository was archived by the owner on Mar 17, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.87 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.87 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
{
"name": "devfolio",
"private": true,
"description": "A simple webapp to create a developer porfolio quickly.",
"version": "0.1.0",
"author": "Avin Sharma",
"dependencies": {
"@material-ui/core": "^4.7.0",
"@material-ui/icons": "^4.5.1",
"axios": "^0.19.0",
"concurrently": "^5.0.1",
"express": "^4.17.1",
"firebase": "^7.5.0",
"gatsby": "^2.17.11",
"gatsby-image": "^2.2.31",
"gatsby-plugin-manifest": "^2.2.27",
"gatsby-plugin-offline": "^3.0.19",
"gatsby-plugin-react-helmet": "^3.1.14",
"gatsby-plugin-sharp": "^2.2.37",
"gatsby-plugin-stripe": "^1.2.3",
"gatsby-plugin-typescript": "^2.1.19",
"gatsby-source-filesystem": "^2.1.36",
"gatsby-transformer-sharp": "^2.3.3",
"lodash": "^4.17.15",
"prop-types": "^15.7.2",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-helmet": "^5.2.1",
"react-stripe-checkout": "^2.6.3",
"react-with-firebase-auth": "^1.2.0",
"zip-local": "^0.3.4"
},
"devDependencies": {
"@types/node": "^12.12.12",
"@types/react": "^16.9.13",
"@types/react-dom": "^16.9.4",
"@types/react-helmet": "^5.0.14",
"prettier": "^1.19.1",
"typescript": "^3.7.2"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "concurrently --kill-others \"npm run develop\" \"npm run download\"",
"download": "node back_end_file_manipulation/app.js",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"type-check": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}