-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.37 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
{
"name": "project12e-virtual-lolly-app",
"private": true,
"description": "A Serverless JAMstack Virtual Lolly App with Gatsby, Storybook, Netlify, FaunaDB, GraphQL and TypeScript",
"version": "0.1.0",
"author": "Mian Muhammad Sharjeel Safdar <[email protected]>",
"dependencies": {
"@apollo/client": "^3.3.14",
"@types/node": "^14.14.35",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"@types/react-helmet": "^6.1.0",
"@types/yup": "^0.29.11",
"cross-fetch": "^3.1.4",
"formik": "^2.2.6",
"gatsby": "^3.0.1",
"gatsby-plugin-gatsby-cloud": "^2.0.0",
"gatsby-plugin-image": "^1.0.0",
"gatsby-plugin-manifest": "^3.0.0",
"gatsby-plugin-offline": "^4.0.0",
"gatsby-plugin-react-helmet": "^4.0.0",
"gatsby-plugin-sharp": "^3.0.0",
"gatsby-source-filesystem": "^3.0.0",
"gatsby-source-graphql": "^3.2.0",
"gatsby-transformer-sharp": "^3.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.3",
"yup": "^0.32.9"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@storybook/addon-actions": "^6.1.21",
"@storybook/addon-essentials": "^6.1.21",
"@storybook/addon-links": "^6.1.21",
"@storybook/react": "^6.1.21",
"babel-loader": "^8.2.2",
"babel-preset-react-app": "^10.0.0",
"npm-run-all": "^4.1.5",
"prettier": "2.2.1"
},
"keywords": [
"gatsby",
"netlify",
"faunadb",
"graphql",
"typescript"
],
"license": "0BSD",
"scripts": {
"prebuild": "cd functions/graphql-fauna && npm i && cd ../showLolly && npm i && cd ../..",
"build": "tsc && npm run prebuild && gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start:app": "npm run develop",
"start:type-check": "tsc --watch",
"start": "npm-run-all --parallel start:app start:type-check",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "https://github.com/SharjeelSafdar/project12d-virtual-lolly-app"
},
"bugs": {
"url": "https://github.com/SharjeelSafdar/project12d-virtual-lolly-app/issues"
}
}