-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.6 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
{
"name": "arthack.nz",
"description": "A landing page for Art~Hack Wellington",
"version": "1.0.0",
"private": true,
"author": "Michael Williams <[email protected]>",
"dependencies": {
"@theme-ui/preset-base": "^0.3.0",
"a11y-react-emoji": "^1.1.1",
"emotion-reset": "^2.0.7",
"gatsby": "^2.17.2",
"gatsby-image": "^2.2.29",
"gatsby-plugin-manifest": "^2.2.23",
"gatsby-plugin-matomo": "^0.7.2",
"gatsby-plugin-react-helmet": "^3.1.13",
"gatsby-plugin-sharp": "^2.2.32",
"gatsby-plugin-theme-ui": "^0.3.0",
"gatsby-source-filesystem": "^2.1.33",
"gatsby-transformer-sharp": "^2.3.0",
"react": "^16.11.0",
"react-div-100vh": "^0.6.0",
"react-dom": "^16.11.0",
"react-helmet": "^5.2.0",
"theme-ui": "^0.3.1",
"typeface-ibm-plex-mono": "0.0.61",
"typeface-ibm-plex-sans": "0.0.75",
"typeface-ibm-plex-serif": "0.0.75"
},
"license": "CC-BY",
"scripts": {
"clean": "gatsby clean",
"build": "gatsby build",
"develop": "gatsby develop",
"start": "npm run develop",
"server": "gatsby serve",
"format": "prettier-standard '*.js' 'src/**/*.js'",
"test": "standard"
},
"devDependencies": {
"husky": "^2.7.0",
"lint-staged": "^8.2.1",
"prettier-standard": "^9.1.1",
"standard": "^12.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/arthacknz/arthack.nz"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"src/**/*.js": [
"prettier-standard",
"git add"
]
}
}
}