This repository has been archived by the owner on Jun 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.51 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
{
"name": "strv-io-web",
"description": "STRV.io website",
"version": "1.0.0",
"author": "STRV",
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"start": "npm run develop",
"format": "prettier --write \"src/**/*.ts\"",
"test": "echo \"Error: no test specified\" && exit 1",
"lint:ts": "eslint './**/*.{ts,tsx}' --fix",
"lint:style": "stylelint './**/*.{ts,tsx}' --fix",
"serve": "gatsby serve"
},
"lint-staged": {
"*.{ts,tsx}": [
"npm run lint:ts",
"npm run lint:style",
"git add"
]
},
"dependencies": {
"@reach/router": "^1.2.1",
"gatsby": "^2.19.10",
"gatsby-image": "^2.2.6",
"gatsby-plugin-google-analytics": "^2.1.12",
"gatsby-plugin-manifest": "^2.2.33",
"gatsby-plugin-netlify-cms": "^4.1.33",
"gatsby-plugin-offline": "^3.0.24",
"gatsby-plugin-react-helmet": "^3.1.2",
"gatsby-plugin-sharp": "^2.2.7",
"gatsby-plugin-styled-components": "^3.1.2",
"gatsby-plugin-typescript": "^2.1.2",
"gatsby-source-filesystem": "^2.1.5",
"gatsby-transformer-json": "^2.2.22",
"gatsby-transformer-sharp": "^2.2.3",
"netlify-cms-app": "^2.11.11",
"query-string": "^6.8.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"react-reveal": "^1.2.2",
"react-scrolllock": "^5.0.0",
"source-map-support": "^0.5.16",
"styled-components": "^4.3.2",
"ts-node": "^8.5.2",
"typescript": "^3.5.3"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@strv/eslint-config-react": "^3.0.0",
"@strv/eslint-config-typescript": "^2.0.0",
"@strv/prettier-config": "^1.0.2",
"@strv/stylelint-config-styled-components": "^1.1.0",
"@types/classnames": "^2.2.9",
"@types/node": "^12.6.2",
"@types/query-string": "^6.3.0",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.8.4",
"@types/react-helmet": "^5.0.8",
"@types/styled-components": "^4.1.18",
"@typescript-eslint/parser": "^2.12.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-styled-components": "^1.10.6",
"babel-preset-gatsby": "^0.2.6",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.0",
"gatsby-plugin-resolve-src": "^2.0.0",
"husky": "^3.0.0",
"lint-staged": "^9.2.0",
"prettier": "^1.18.2",
"stylelint": "^12.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/strvcom/strv-io-web"
}
}