forked from antstackio/lanyard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.99 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": "lanyard",
"private": true,
"description": "The Agenda PWA for your Conference",
"version": "0.1.0",
"author": "StackTinkers",
"dependencies": {
"@emotion/core": "^10.0.14",
"@emotion/styled": "^10.0.14",
"aws-amplify": "^1.1.32",
"gatsby": "^2.13.1",
"gatsby-image": "^2.2.4",
"gatsby-plugin-emotion": "^4.1.0",
"gatsby-plugin-google-analytics": "^2.1.1",
"gatsby-plugin-layout": "^1.1.2",
"gatsby-plugin-manifest": "^2.2.1",
"gatsby-plugin-offline": "^2.2.4",
"gatsby-plugin-react-helmet": "^3.1.0",
"gatsby-plugin-sharp": "^2.2.2",
"gatsby-source-filesystem": "^2.1.2",
"gatsby-transformer-json": "^2.2.0",
"gatsby-transformer-sharp": "^2.2.1",
"husky": "^3.0.0",
"lint-staged": "^9.0.2",
"lodash": "^4.17.14",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"react-transition-group": "^4.2.1",
"typography": "^0.16.19"
},
"devDependencies": {
"all-contributors-cli": "^6.8.1",
"eslint": "^6.0.1",
"eslint-plugin-react": "^7.14.2",
"prettier": "^1.18.2"
},
"homepage": "https://www.awsugblr.in",
"keywords": [
"gatsby",
"awsugblr",
"agenda app",
"lanyard"
],
"license": "MIT",
"scripts": {
"develop": "gatsby develop",
"build": "rm -rf public && rm -rf .cache && gatsby build",
"lint": "./node_modules/.bin/eslint --ext .js,.jsx --ignore-pattern public .",
"format": "prettier --write '{gatsby-*.js,src/**/*.{js,jsx,json,css}}'",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{gatsby-*.js,src/**/*.{js,jsx,json,css}}": [
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/hnprashanth/lanyard"
},
"bugs": {
"url": "https://github.com/hnprashanth/lanyard/issues"
}
}