-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
executable file
·63 lines (63 loc) · 1.73 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
{
"name": "react-nextjs-snippets",
"version": "1.8.1",
"main": "index.js",
"repository": "https://github.com/buidler-hub/react-nextjs-snippets.git",
"author": "Avneesh Agarwal <[email protected]>",
"license": "MIT",
"dependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0"
},
"devDependencies": {
"husky": "8.0.1",
"prettier": "2.7.1",
"pretty-quick": "3.1.3"
},
"scripts": {
"prepare": "husky install",
"pre-commit": "yarn run generateReadme && yarn run format && git add -A .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"generateReadme": "node ./src/automation/scripts/generateReadme.js"
},
"engines": {
"vscode": "^1.64.0"
},
"contributes": {
"snippets": [
{
"language": "javascript",
"path": "./src/extension/snippets/react-javascript.json"
},
{
"language": "javascriptreact",
"path": "./src/extension/snippets/react-javascript.json"
},
{
"language": "typescript",
"path": "./src/extension/snippets/react-typescript.json"
},
{
"language": "typescriptreact",
"path": "./src/extension/snippets/react-typescript.json"
},
{
"language": "javascriptreact",
"path": "./src/extension/snippets/next-javascript.json"
},
{
"language": "typescript",
"path": "./src/extension/snippets/next-typescript.json"
},
{
"language": "typescriptreact",
"path": "./src/extension/snippets/next-typescript.json"
},
{
"language": "javascript",
"path": "./src/extension/snippets/next-javascript.json"
}
]
}
}