-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.91 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
{
"name": "attic-box",
"version": "1.2.3",
"description": "Code for attic-box.",
"author": "gavinlight",
"repository": {
"type": "git",
"url": ""
},
"license": "MIT",
"scripts": {
"start": "gatsby clean && gatsby develop -p 3000",
"server": "gatsby serve",
"build": "gatsby build",
"clean": "gatsby clean",
"typecheck": "tsc --noEmit",
"lint": "eslint --ext .js --ext .jsx --ext .ts --ext .tsx src/",
"lint:fix": "eslint --fix --ext .js --ext .jsx --ext .ts --ext .tsx src/",
"stylelint": "stylelint './src/**/*.ts*'",
"prettier": "prettier --write '**/*.{js,ts,tsx}'"
},
"keywords": [],
"browserslist": {
"production": [
"> 0.2%",
"ie 11",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"body-scroll-lock": "3.0.3",
"gatsby": "5.10.0",
"gatsby-omni-font-loader": "2.0.2",
"gatsby-plugin-google-tagmanager": "4.11.1",
"gatsby-plugin-image": "2.11.1",
"gatsby-plugin-react-helmet": "5.24.0",
"gatsby-plugin-sharp": "4.25.1",
"gatsby-plugin-styled-components": "5.11.0",
"gatsby-source-contentful": "7.9.1",
"gatsby-transformer-sharp": "4.11.0",
"lodash": "4.17.21",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-helmet": "6.1.0",
"react-scroll-percentage": "4.2.0",
"styled-components": "5.3.3"
},
"devDependencies": {
"@babel/core": "7.16.7",
"@babel/plugin-proposal-export-default-from": "7.12.1",
"@babel/preset-env": "7.16.7",
"@babel/preset-react": "7.16.7",
"@babel/preset-typescript": "7.16.7",
"@babel/runtime-corejs3": "7.16.7",
"@ianvs/prettier-plugin-sort-imports": "3.7.2",
"@types/body-scroll-lock": "2.6.1",
"@types/lodash": "4.14.162",
"@types/react": "17.0.38",
"@types/react-dom": "17.0.11",
"@types/react-helmet": "6.1.5",
"@types/styled-components": "5.1.19",
"@typescript-eslint/eslint-plugin": "5.9.0",
"@typescript-eslint/parser": "5.9.0",
"babel-plugin-lodash": "3.3.4",
"babel-plugin-styled-components": "2.0.2",
"eslint": "8.6.0",
"eslint-config-prettier": "8.8.0",
"eslint-config-react-app": "7.0.0",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"gatsby-plugin-manifest": "4.11.1",
"gatsby-plugin-module-resolver": "1.0.3",
"gatsby-plugin-react-svg": "3.1.0",
"gatsby-plugin-typegen": "2.2.4",
"prettier": "2.8.3",
"stylelint": "15.10.1",
"stylelint-config-standard": "24.0.0",
"stylelint-config-styled-components": "0.1.1",
"stylelint-processor-styled-components": "1.0.0",
"tsconfig-paths-webpack-plugin": "3.5.1",
"typescript": "4.5.4",
"workbox-webpack-plugin": "6.4.2"
}
}