-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
101 lines (101 loc) · 3.13 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
{
"name": "developassion-website",
"description": "DeveloPassion Website",
"version": "1.2.3",
"author": "Sébastien Dubois",
"keywords": [
"gatsby",
"typescript"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://www.developassion.be"
},
"engines": {
"node": ">=8.12.0"
},
"dependencies": {
"gatsby": "3.13.0",
"gatsby-image": "3.11.0",
"gatsby-plugin-image": "1.13.0",
"gh-pages": "2.0.1",
"io-ts": "1.8.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-helmet": "6.1.0",
"tslib": "2.3.1"
},
"devDependencies": {
"@types/react": "17.0.19",
"@types/react-dom": "17.0.9",
"@types/react-helmet": "6.1.2",
"gatsby-plugin-csp": "1.1.3",
"gatsby-plugin-manifest": "3.13.0",
"gatsby-plugin-netlify": "3.13.0",
"gatsby-plugin-offline": "4.13.0",
"gatsby-plugin-plausible": "0.0.7",
"gatsby-plugin-react-helmet": "4.13.0",
"gatsby-plugin-react-svg": "3.0.1",
"gatsby-plugin-sass": "4.13.0",
"gatsby-plugin-sharp": "3.13.0",
"gatsby-plugin-sitemap": "4.9.0",
"gatsby-plugin-stylelint": "3.2.0",
"gatsby-source-filesystem": "3.13.0",
"gatsby-transformer-sharp": "3.13.0",
"htmlparser2": "3.10.1",
"husky": "1.3.1",
"lint-staged": "8.1.5",
"node-fetch": "2.6.1",
"node-sass": "6.0.1",
"prettier": "1.16.4",
"replace-in-file": "3.4.3",
"stylelint": "9.10.1",
"stylelint-config-prettier": "5.0.0",
"stylelint-webpack-plugin": "3.0.1",
"svg-react-loader": "0.4.6",
"tslint-config-prettier": "1.18.0",
"tslint-sonarts": "1.9.0",
"typescript": "3.9.10",
"gonzales-pe": "4.3.0"
},
"scripts": {
"build": "npm run build:dev",
"build:dev": "gatsby develop",
"build:prod": "gatsby build --prefix-paths && node ./csp-util.js",
"check-deps": "npx npm-check",
"clean": "npm run rimraf -- node_modules .tmp .cache public dist",
"clean:install": "yarn install",
"preclean:install": "npm run clean",
"deploy": "npm run build:prod && npm run gh-pages",
"develop": "gatsby develop",
"format": "prettier **/*.{css,js,json,md,pcss,scss,ts} --write",
"gatsby": "gatsby",
"gh-pages": "gh-pages --dist public --branch gh-pages",
"lint": "npm run lint-ts && npm run lint-css",
"lint-css": "stylelint \"./src/**/*.?(pc|sc|c|sa)ss\" --formatter \"string\"",
"lint-staged": "lint-staged",
"lint-ts": "tslint --config ./tslint-npm.json --project ./tsconfig.json 'src/**/*.{ts,tsx}'",
"prettier": "npm run format",
"rimraf": "npx rimraf",
"serve": "npm run serve:dev",
"serve:dev": "npm run build:dev",
"start": "npm run serve:dev",
"serve:prod": "npm run build:prod && gatsby serve",
"test": "npm run lint && echo \"Error: no test specified\" && exit 1",
"tsc": "tsc",
"tslint": "tslint --project ./",
"tslint-check": "tslint-config-prettier-check ./tslint-npm.json"
},
"lint-staged": {
"*.{css,js,json,md,pcss,scss,ts}": [
"prettier --write --html-whitespace-sensitivity strict",
"git add"
]
},
"husky": {
"hooks": {
"precommit": "npm run lint-staged"
}
}
}