-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 3.02 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
{
"name": "sasapps",
"description": "Experts in SAS Data Analytics and Management. Analyse Implement Maximise",
"version": "3.0.0",
"author": "",
"main": "n/a",
"scripts": {
"start": "gatsby develop",
"build": "gatsby build",
"develop": "gatsby develop",
"buildsync": "gatsby build && npm run sync",
"lint": "eslint --fix --ext .ts,.tsx,.js,.jsx --ignore-pattern '/types/' --ignore-path .gitignore .",
"lint:prettier": "prettier --check \"src/**/*.+(ts|tsx|js|jsx|json|css|scss)\"",
"lint:prettierfix": "prettier --write \"src/**/*.+(ts|tsx|js|jsx|json|css|scss)\" --ignore-path .gitignore",
"lint:text": "textlint content/posts/*.md",
"lint:textfix": "textlint --fix content/posts/*.md"
},
"dependencies": {
"gatsby": "^2.23.11",
"gatsby-image": "2.4.6",
"gatsby-link": "2.4.5",
"gatsby-plugin-catch-links": "2.3.4",
"gatsby-plugin-graphql-codegen": "^2.7.1",
"gatsby-plugin-manifest": "2.4.18",
"gatsby-plugin-offline": "3.2.17",
"gatsby-plugin-react-helmet": "3.3.3",
"gatsby-plugin-sass": "^2.2.4",
"gatsby-plugin-sharp": "2.6.10",
"gatsby-plugin-sitemap": "^2.4.4",
"gatsby-plugin-twitter": "2.3.3",
"gatsby-plugin-typescript": "^2.4.4",
"gatsby-remark-copy-linked-files": "2.3.4",
"gatsby-remark-embed-video": "^3.0.10",
"gatsby-remark-images": "3.3.9",
"gatsby-remark-prismjs": "3.5.3",
"gatsby-remark-responsive-iframe": "2.4.4",
"gatsby-remark-smartypants": "2.3.3",
"gatsby-source-filesystem": "2.3.10",
"gatsby-transformer-remark": "2.8.14",
"gatsby-transformer-sharp": "2.5.4"
},
"devDependencies": {
"@fortawesome/fontawesome-svg-core": "1.2.29",
"@fortawesome/free-brands-svg-icons": "5.13.1",
"@fortawesome/free-solid-svg-icons": "5.13.1",
"@fortawesome/react-fontawesome": "0.1.11",
"@types/react-helmet": "6.0.0",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/parser": "2.34.0",
"animate.css": "4.1.0",
"babel-eslint": "10.1.0",
"bootstrap": "4.5.0",
"emergence.js": "1.1.2",
"eslint": "7.3.1",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.20.2",
"eslint-plugin-react-hooks": "4.0.5",
"font-awesome": "4.7.0",
"gh-pages": "3.1.0",
"husky": "4.2.5",
"jquery": "3.5.1",
"lint-staged": "10.2.11",
"modern-normalize": "0.6.0",
"node-sass": "4.14.1",
"popper.js": "1.16.1",
"prettier": "2.0.5",
"prismjs": "^1.25.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-helmet": "6.1.0",
"textlint": "11.6.3",
"textlint-rule-preset-ja-spacing": "2.0.1",
"textlint-rule-preset-japanese": "4.0.4",
"typescript": "3.9.5"
},
"keywords": [
"gatsby",
"gatstrap",
"starter"
],
"license": "MIT",
"lint-staged": {
"src/**/*.{ts,tsx,js,jsx,json,css,scss,md}": [
"prettier --write"
],
"*.md": [
"npm run lint:textfix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}