-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.03 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
{
"name": "ReactSnipp",
"displayName": "React Snipp ~ Essential React Snippets",
"description": "Supercharge your React development with 50+ essential code snippets for hooks, components, state management, and more. Boost productivity for React, React Native, and Next.js projects.",
"version": "0.0.4",
"icon": "images/logo.png",
"publisher": "adityavijay21",
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Snippets",
"Programming Languages"
],
"keywords": [
"react",
"react-native",
"javascript",
"typescript",
"snippets",
"hooks",
"components",
"redux",
"context-api",
"next-js",
"react-router",
"styled-components",
"formik",
"testing",
"graphql",
"recoil",
"react-query",
"performance",
"error-boundary",
"storybook",
"frontend",
"ui",
"productivity"
],
"contributes": {
"snippets": [
{
"language": "javascript",
"path": "./snippets/snippets.code-snippets"
},
{
"language": "javascriptreact",
"path": "./snippets/snippets.code-snippets"
},
{
"language": "typescript",
"path": "./snippets/snippets.code-snippets"
},
{
"language": "typescriptreact",
"path": "./snippets/snippets.code-snippets"
}
]
},
"devDependencies": {
"json-concat": "^0.0.2"
},
"scripts": {
"concat": "json-concat snippets/types/ snippets/snippets.code-snippets"
},
"repository": {
"type": "git",
"url": "https://github.com/adityavijay21/reactsnipp.git"
},
"bugs": {
"url": "https://github.com/adityavijay21/reactsnipp/issues"
},
"homepage": "https://github.com/adityavijay21/reactsnipp#readme",
"license": "MIT"
}