-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.04 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.04 KB
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
{
"name": "sanctu-dot-com",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install"
},
"dependencies": {
"@sanctucompu/basement": "^1.2.1",
"classnames": "^2.3.1",
"contentful": "^9.1.5",
"lodash": "^4.17.21",
"next": "12.2.0",
"object-hash": "^2.2.0",
"react": "17.0.2",
"react-calendly": "^4.1.1",
"react-dom": "17.0.2",
"react-google-recaptcha": "^3.1.0",
"react-modal": "^3.16.1",
"react-remarkable": "^1.1.3",
"react-swipeable": "^6.2.0",
"sass": "^1.47.0",
"what-input": "^5.2.10"
},
"devDependencies": {
"@zeit/next-css": "^1.0.1",
"eslint": "8.6.0",
"eslint-config-next": "12.2.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.7",
"next-purgecss": "^4.0.0",
"prettier": "^2.5.1",
"vercel": "^23.1.2"
},
"prettier": {
"singleQuote": true
},
"lint-staged": {
"*.{ts,tsx,js,json,css,scss,md}": [
"prettier --write"
]
}
}