-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.44 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": "sinf",
"private": true,
"description": "SINF 2022 website",
"version": "0.1.0",
"author": "NIAEFEUP <ni@aefeup.pt>",
"dependencies": {
"bootstrap": "^5.2.2",
"gatsby": "^4.24.4",
"gatsby-cli": "^4.24.0",
"gatsby-image": "^3.11.0",
"gatsby-plugin-manifest": "^4.24.0",
"gatsby-plugin-offline": "^5.24.0",
"gatsby-plugin-react-helmet": "^5.24.0",
"gatsby-plugin-react-svg": "^3.1.0",
"gatsby-plugin-sharp": "^4.24.0",
"gatsby-source-filesystem": "^4.24.0",
"gatsby-transformer-json": "^4.24.0",
"gatsby-transformer-remark": "^5.24.0",
"gatsby-transformer-sharp": "^4.24.0",
"hamburger-react": "^2.5.0",
"husky": "^3.0.0",
"lint-staged": "^9.0.2",
"pretty-quick": "^1.11.1",
"prop-types": "^15.8.1",
"react": "^16.8.6",
"react-bootstrap": "^1.6.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"react-icons": "^3.7.0",
"reactstrap": "^8.10.1",
"vanilla-tilt": "^1.7.2"
},
"devDependencies": {
"prettier": "^1.19.1"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"clean": "gatsby clean",
"develop": "gatsby develop",
"cleanrun": "gatsby clean; gatsby develop",
"format": "prettier --write src/**/*.{js,jsx} gatsby-*.js",
"start": "npm run develop",
"serve": "gatsby serve"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}