-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.11 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
{
"name": "@cogito-study/domus",
"private": true,
"description": "The home of Cogito",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"dev": "gatsby develop -o",
"start": "yarn develop",
"serve": "gatsby serve",
"lint": "eslint . --ext .ts,.tsx --ignore-path .eslintignore",
"lint:fix": "yarn lint --fix",
"format": "prettier --write content/**/*.yaml",
"type-check": "tsc --noEmit",
"now-build": "yarn run build"
},
"dependencies": {
"@chakra-ui/core": "^0.5.2",
"@emotion/core": "^10.0.22",
"@emotion/styled": "^10.0.23",
"@reach/router": "^1.3.3",
"emotion-theming": "^10.0.19",
"gatsby": "^2.18.6",
"gatsby-image": "^2.2.34",
"gatsby-plugin-chakra-ui": "^0.1.0",
"gatsby-plugin-emotion": "^4.1.22",
"gatsby-plugin-google-analytics": "^2.1.29",
"gatsby-plugin-manifest": "^2.2.42",
"gatsby-plugin-next-seo": "^1.4.0",
"gatsby-plugin-offline": "^3.0.35",
"gatsby-plugin-react-helmet": "^3.1.16",
"gatsby-plugin-robots-txt": "^1.5.0",
"gatsby-plugin-sharp": "^2.3.5",
"gatsby-plugin-sitemap": "^2.2.22",
"gatsby-plugin-typescript": "^2.1.20",
"gatsby-source-filesystem": "^2.1.40",
"gatsby-source-prismic": "^2.3.0-alpha.3",
"gatsby-transformer-sharp": "^2.3.6",
"graphql": "^14.5.8",
"husky": "^3.0.8",
"js-cookie": "^2.2.1",
"lint-staged": "^9.4.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-genie": "^0.1.6",
"react-helmet": "^5.2.1",
"react-helmet-async": "^1.0.4",
"react-icons": "^3.9.0",
"sharp": "^0.24.1",
"typescript": "^3.6.3"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/js-cookie": "^2.2.2",
"@types/node": "^10.14.20",
"@types/react": "^16.9.5",
"@types/react-dom": "^16.9.1",
"@types/react-helmet": "^5.0.11",
"@types/react-router": "^5.1.4",
"@typescript-eslint/eslint-plugin": "^2.3.2",
"@typescript-eslint/parser": "^2.3.2",
"cross-env": "^6.0.3",
"eslint": "^6.4.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.1.1",
"gh-pages": "^2.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"start-server-and-test": "^1.10.4",
"stylelint": "11.0.0",
"stylelint-config-prettier": "6.0.0",
"stylelint-config-recommended": "3.0.0",
"stylelint-config-styled-components": "0.1.1",
"stylelint-prettier": "1.1.1",
"stylelint-processor-styled-components": "1.8.0"
},
"repository": {
"type": "git",
"url": "https://github.com/cogito-study/domus"
},
"bugs": {
"url": "https://github.com/cogito-study/domus/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write",
"git add"
],
"*.tsx": [
"stylelint --fix",
"git add"
]
}
}