-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.55 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
{
"name": "gatsby-typescript-boilerplate",
"private": true,
"description": "Gatsby Typescript Boilerplate",
"version": "1.0.0",
"author": "Kjetil Haugland",
"dependencies": {
"bootstrap": "^4.6.0",
"gatsby": "^2.32.11",
"gatsby-image": "^2.11.0",
"gatsby-plugin-manifest": "^2.12.1",
"gatsby-plugin-offline": "^3.10.2",
"gatsby-plugin-react-helmet": "^3.10.0",
"gatsby-plugin-sass": "^2.8.0",
"gatsby-plugin-sharp": "^2.14.3",
"gatsby-plugin-sitemap": "^2.12.0",
"gatsby-plugin-tslint": "0.0.2",
"gatsby-plugin-typescript": "^2.12.1",
"gatsby-source-filesystem": "^2.11.1",
"gatsby-transformer-sharp": "^2.12.1",
"node-sass": "^4.14.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-helmet": "^5.2.1"
},
"devDependencies": {
"@types/node": "^13.13.47",
"@types/react": "^16.14.5",
"@types/react-dom": "^16.9.11",
"@types/react-helmet": "^5.0.16",
"prettier": "^1.19.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-loader": "^3.5.4",
"tslint-plugin-prettier": "^2.3.0",
"tslint-react": "^4.2.0",
"typescript": "^3.9.9"
},
"keywords": [
"gatsby",
"typescript",
"boilerplate"
],
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write src/**/*.{js,jsx}",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\"",
"type-check": "tsc --noEmit",
"lint": "tslint --project ."
}
}