-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
62 lines (62 loc) · 1.62 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": "sourcebit-target-next",
"version": "0.8.3",
"description": "A Sourcebit target plugin for Next.js",
"main": "index.js",
"scripts": {
"version-minor": "npm version minor -m \"bumped version to v%s\"",
"version-patch": "npm version patch -m \"bumped version to v%s\"",
"test": "npm run format",
"format": "prettier --write \"./**/*.{js,jsx,md,html}\""
},
"files": [
"lib/**/*",
"*.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/stackbithq/sourcebit-target-next.git"
},
"keywords": [
"headless",
"headless-cms",
"jamstack",
"ssg",
"nextjs"
],
"author": "Stackbit",
"license": "MIT",
"bugs": {
"url": "https://github.com/stackbithq/sourcebit-target-next/issues"
},
"homepage": "https://github.com/stackbithq/sourcebit-target-next#readme",
"dependencies": {
"@sindresorhus/slugify": "^1.0.0",
"fs-extra": "^10.0.0",
"lodash": "^4.17.21",
"socket.io": "^4.1.2",
"socket.io-client": "^4.1.2"
},
"peerDependencies": {
"react": ">=16",
"next": ">=10"
},
"devDependencies": {
"@stackbit/prettier-config": "^1.0.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,md,html}": [
"npm run format",
"git add"
]
},
"prettier": "@stackbit/prettier-config"
}