-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.7 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
{
"name": "kylpo.me",
"private": true,
"version": "0.1.0",
"dependencies": {
"gatsby": "^2.21.0",
"gatsby-image": "^2.4.0",
"gatsby-plugin-manifest": "^2.4.0",
"gatsby-plugin-offline": "^3.2.0",
"gatsby-plugin-react-helmet": "^3.3.0",
"gatsby-plugin-sharp": "^2.6.0",
"gatsby-source-filesystem": "^2.3.0",
"gatsby-transformer-sharp": "^2.5.0",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^6.0.0"
},
"devDependencies": {
"@types/react-dom": "^16.9.8",
"@types/react-helmet": "^5.0.15",
"chronstruct-primitives": "^0.3.2",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"gatsby-plugin-linaria": "^2.0.0",
"gatsby-plugin-typescript": "^2.4.0",
"husky": "^4.2.5",
"linaria": "^1.3.3",
"patch-package": "^6.2.2",
"postinstall-postinstall": "^2.1.0",
"prettier": "2.0.5",
"typescript": "^3.8.3"
},
"scripts": {
"postinstall": "patch-package",
"build": "gatsby build",
"rebuild": "yarn clean && yarn build",
"dev": "gatsby develop --host=0.0.0.0 --open",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"prod": "yarn build && yarn serve",
"start": "yarn dev",
"serve": "gatsby serve --host=0.0.0.0 --open",
"clean": "gatsby clean",
"lint": "eslint --no-error-on-unmatched-pattern ./src/**/*.{ts,tsx}",
"lint-fix": "eslint --fix ./src/**/*.{ts,tsx}",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"type-check": "tsc --noEmit"
},
"husky": {
"hooks": {
"pre-push": "yarn run type-check && yarn run lint"
}
}
}