This repository has been archived by the owner on Jun 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
87 lines (87 loc) · 2.51 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
{
"name": "webuild",
"description": "Website for https://webuild.community/",
"version": "2.0.0",
"dependencies": {
"@contentful/rich-text-react-renderer": "^14.1.2",
"@tailwindcss/typography": "^0.3.1",
"airtable": "^0.10.1",
"classnames": "^2.2.6",
"contentful": "^8.1.7",
"dayjs": "^1.8.26",
"next": "^10.0.4",
"next-seo": "^4.17.0",
"preact": "^10.5.7",
"preact-render-to-string": "^5.1.12",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-helmet": "6.1.0",
"smoothscroll-polyfill": "^0.4.4",
"tailwindcss": "^2.0.2",
"tailwindcss-transitions": "^2.2.0",
"typeface-barlow": "^0.0.71"
},
"license": "MIT",
"scripts": {
"convert-jobs-data": "node ./scripts/sourceGatsbyMdToJson.js",
"prebuild": "yarn convert-jobs-data",
"analyze:lint": "eslint --ext .jsx --ext .js .",
"analyze": "yarn analyze:lint && yarn analyze:prettier",
"postbuild": "next-on-netlify",
"dev": "next",
"build": "next build",
"start": "next start",
"prettify": "prettier -c --write \"*/**\"",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.0",
"@semantic-release/release-notes-generator": "^9.0.1",
"@types/classnames": "^2.2.11",
"@types/node": "^14.14.20",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/smoothscroll-polyfill": "^0.3.1",
"autoprefixer": "^10.1.0",
"babel-eslint": "10.1.0",
"babel-plugin-inline-react-svg": "^1.1.2",
"critters": "^0.0.6",
"cssnano": "4.1.10",
"dotenv": "^8.2.0",
"eslint": "7.16.0",
"eslint-loader": "4.0.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-react": "7.21.5",
"husky": "5",
"lint-staged": "^10.5.4",
"next-on-netlify": "^2.6.3",
"pinst": "^2.1.6",
"postcss": "^8.2.2",
"prettier": "^2.2.1",
"semantic-release": "^17.3.9",
"typescript": "^4.1.3"
},
"lint-staged": {
"**/*.{json,css,scss,md}": [
"prettier --write",
"git add"
],
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"volta": {
"node": "15.5.0",
"yarn": "1.22.10"
}
}