This repository has been archived by the owner on Oct 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 3.5 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "aquarius",
"private": true,
"description": "Your project description",
"version": "1.0.0",
"author": "Ezra Singh <[email protected]>",
"dependencies": {
"@artsy/fresnel": "^1.1.0",
"@liontechnyc/gemini": "^1.0.1-3",
"@n8tb1t/use-scroll-position": "^1.0.43",
"babel-plugin-styled-components": "^1.10.7",
"classnames": "^2.2.6",
"cx": "^20.5.5",
"formik": "^2.1.4",
"gatsby": "^2.21.37",
"gatsby-image": "^2.4.4",
"gatsby-plugin-env-variables": "^1.0.2",
"gatsby-plugin-extract-schema": "0.0.5",
"gatsby-plugin-google-analytics": "^2.3.2",
"gatsby-plugin-graphql-loader": "^1.0.2",
"gatsby-plugin-manifest": "^2.4.5",
"gatsby-plugin-offline": "^3.2.3",
"gatsby-plugin-prefetch-google-fonts": "^1.4.3",
"gatsby-plugin-react-helmet": "^3.3.1",
"gatsby-plugin-sass": "^2.3.2",
"gatsby-plugin-sharp": "^2.6.4",
"gatsby-plugin-styled-components": "^3.3.6",
"gatsby-plugin-tslint": "0.0.2",
"gatsby-plugin-typescript": "^2.4.3",
"gatsby-source-filesystem": "^2.3.14",
"gatsby-transformer-remark": "^2.8.13",
"gatsby-transformer-sharp": "^2.5.2",
"gatsby-transformer-yaml": "^2.4.2",
"graphql-tag": "^2.10.3",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.19",
"node-sass": "^4.14.1",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^6.0.0",
"styled-components": "^5.1.1",
"yup": "^0.29.1"
},
"devDependencies": {
"@types/fs-extra": "^9.0.1",
"@types/isomorphic-fetch": "0.0.35",
"@types/jest": "^25.2.3",
"@types/react": "^16.9.38",
"@types/react-dom": "^16.9.8",
"@types/react-helmet": "^6.0.0",
"@types/react-test-renderer": "^16.9.2",
"@types/sharp": "^0.25.0",
"@types/styled-components": "^5.1.0",
"@types/yup": "^0.29.1",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"babel-jest": "^26.0.1",
"babel-preset-gatsby": "^0.4.7",
"dotenv": "^8.2.0",
"dtslint": "^3.6.9",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.0.1",
"prettier": "2.0.5",
"react-test-renderer": "^16.13.1",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"tslint-loader": "^3.5.4",
"tslint-plugin-graphql": "0.0.6",
"tslint-plugin-prettier": "^2.3.0",
"tslint-react": "^5.0.0",
"typescript": "^3.9.3"
},
"keywords": [
"gatsby",
"react",
"typescript",
"liontechnyc",
"frontend",
"ui",
"javascript",
"ux",
"content",
"web"
],
"license": "GPL-2.0-only",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop -p 5000",
"format": "tslint \"{src}/**/*.{ts,tsx}\" --quiet --fix || prettier --write \"*/**/*.{js,json,md,scss}\"",
"lint-staged": "tslint \"src/**/*.{js,ts,tsx}\" --fix || prettier --write \"*/**/*.{js,json,md,scss}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"stage": "npm run clean && npm run build && npm run serve",
"test": "jest",
"optimize": "ts-node scripts/optimize.ts",
"type-check": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "https://gitlab.com/liontechnyc/stacks/aquarius.git"
},
"bugs": {
"url": "https://liontech.nyc"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-staged"
}
}
}