-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.06 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
{
"name": "bntnam.github.io",
"description": "Personal Website - Nam",
"version": "1.0.0",
"author": "Nam Bui",
"dependencies": {
"@sentry/gatsby": "^6.12.0",
"gatsby": "^5.3.2",
"gatsby-plugin-manifest": "^5.3.1",
"gatsby-plugin-react-helmet": "^6.3.0",
"gatsby-plugin-sass": "^6.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"sass": "^1.56.2",
"styled-components": "^4.3.2"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write '**/*.js' '**/*.scss'",
"clean": "rimraf .cache public",
"deploy:github": "npm run build && node ./scripts/deploy-github"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "^2.1.1",
"husky": "^3.0.3",
"prettier": "^1.14.2",
"pretty-quick": "^1.11.1",
"rimraf": "^2.6.3"
}
}