This repository has been archived by the owner on Apr 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.38 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
{
"name": "lijs.org",
"private": false,
"description": "The official website for the Long Island JavaScript Group.",
"version": "0.0.1",
"author": "Justin Wilkerson <gojutin@@gmail.com>",
"dependencies": {
"axios": "^0.18.0",
"babel-plugin-styled-components": "^1.10.0",
"date-fns": "^1.30.1",
"date-fns-timezone": "^0.1.4",
"gatsby": "^2.3.20",
"gatsby-background-image": "^0.3.4",
"gatsby-image": "^2.0.38",
"gatsby-plugin-google-analytics": "^2.0.18",
"gatsby-plugin-manifest": "^2.0.29",
"gatsby-plugin-offline": "^2.0.25",
"gatsby-plugin-react-helmet": "^3.0.12",
"gatsby-plugin-react-svg": "^2.1.1",
"gatsby-plugin-sharp": "^2.0.34",
"gatsby-plugin-styled-components": "^3.0.7",
"gatsby-plugin-typescript": "^2.0.12",
"gatsby-source-filesystem": "^2.0.29",
"gatsby-source-graphql": "^2.0.17",
"gatsby-transformer-sharp": "^2.1.18",
"react": "^16.8.6",
"react-animations": "^1.0.0",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.0",
"react-photo-gallery": "^6.3.2",
"react-scroll": "^1.7.11",
"styled-components": "^4.2.0"
},
"devDependencies": {
"@types/date-fns": "^2.6.0",
"@types/react-helmet": "^5.0.8",
"@types/react-scroll": "^1.5.4",
"@types/styled-components": "^4.1.14",
"gatsby-plugin-tslint": "0.0.2",
"netlify-lambda": "^1.4.5",
"npm-run-all": "^4.1.5",
"tslint": "^5.15.0",
"tslint-immutable": "^5.5.2",
"tslint-loader": "^3.5.4",
"tslint-react": "^4.0.0",
"typescript": "^3.4.3"
},
"keywords": [
"gatsby",
"javascript",
"meetup",
"lijs"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"dev": "npm-run-all --parallel lambda:serve develop",
"format": "prettier --write src/**/*.{js,jsx}",
"start:lambda": "npm-run-all --parallel lambda:serve develop",
"serve": "gatsby serve",
"test": "jest",
"lambda:serve": "netlify-lambda serve ./src/lambda",
"lambda:build": "netlify-lambda build ./src/lambda",
"fix": "tslint --fix -c ./tslint.json 'src/**/*{.ts,.tsx}'",
"lint": "tslint -c ./tslint.json 'src/**/*{.ts,.tsx}'",
"prod": "npm run build; npm run lambda:build"
},
"repository": {
"type": "git",
"url": "https://github.com/lijs-meetup/lijs.org"
},
"bugs": {
"url": "https://github.com/lijs-meetup/lijs.org/issues"
}
}