-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.69 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
74
75
76
77
78
79
80
81
82
{
"name": "sai-krishna-prasad-k-portfolio",
"private": true,
"description": "Sai Krishna Prasad Kandua's Personal Website",
"version": "0.1.0",
"author": "Sai Krishna Prasad K",
"dependencies": {
"gatsby": "^2.32.13",
"gatsby-plugin-force-trailing-slashes": "^1.0.5",
"gatsby-plugin-google-gtag": "^2.8.0",
"gatsby-plugin-image": "^1.14.1",
"gatsby-plugin-manifest": "^2.12.1",
"gatsby-plugin-nprogress": "^2.10.0",
"gatsby-plugin-offline": "^3.10.2",
"gatsby-plugin-preload-fonts": "^2.14.0",
"gatsby-plugin-react-helmet": "^3.10.0",
"gatsby-plugin-sass": "^2.8.0",
"gatsby-plugin-sharp": "^2.14.4",
"gatsby-source-filesystem": "^3.14.0",
"gatsby-transformer-json": "^3.14.0",
"gatsby-transformer-sharp": "^2.12.1",
"node-sass": "^4.14.1",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.0.0",
"react-icons": "^4.3.1"
},
"devDependencies": {
"@testing-library/cypress": "^8.0.1",
"chai": "^4.3.4",
"chrome-launcher": "^0.14.1",
"cypress": "^8.6.0",
"gatsby-cypress": "^0.4.12",
"husky": "^7.0.2",
"lighthouse": "^8.5.1",
"lighthouse-badges": "^1.1.13",
"mocha": "^9.1.3",
"prettier": "2.4.1",
"start-server-and-test": "^1.14.0"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "yarn develop",
"serve": "gatsby build && gatsby serve",
"clean": "gatsby clean",
"preload-fonts": "gatsby-preload-fonts",
"develop:cy": "CYPRESS_SUPPORT=y yarn run develop",
"serve:cy": "CYPRESS_SUPPORT=y yarn run serve",
"cy:verify": "cypress verify",
"cy:open": "cypress open",
"set-server-baseurl": "CYPRESS_baseUrl=http://localhost:9000",
"cy:run": "yarn set-server-baseurl cypress run",
"serve-and-test": "start-server-and-test serve:cy :9000",
"test:cy": "yarn serve-and-test cy:run",
"test:cy:dev": "start-server-and-test develop:cy :8000 cy:open",
"serve:lh": "start-server-and-test serve :9000",
"generate:lh:badges": "lighthouse-badges --urls http://localhost:9000 -o lighthouse_badges -b flat-square",
"lh:badges": "yarn serve:lh generate:lh:badges",
"test:lh": "mocha lighthouse_tests/*.spec.js",
"lh:serve:test": "yarn serve:lh test:lh"
},
"husky": {
"hooks": {
"pre-commit": "yarn format",
"pre-push": "yarn test:cy && yarn lh:serve:test"
}
},
"repository": {
"type": "git",
"url": "https://github.com/KRRISH96/saikrishna.dev"
},
"bugs": {
"url": "https://github.com/KRRISH96/saikrishna.dev/issues"
}
}