-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
57 lines (57 loc) · 1.27 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
{
"name": "full-react-snippets",
"displayName": "Fullstack React/React Native snippets",
"description": "Code snippets for React/React Native and extra libs",
"version": "1.4.2",
"icon": "images/logo.png",
"publisher": "walter-ribeiro",
"repository": {
"type": "git",
"url": "https://github.com/walteribeiro/full-react-snippets"
},
"bugs": {
"url": "https://github.com/walteribeiro/full-react-snippets/issues"
},
"engines": {
"vscode": "^1.12.0"
},
"categories": [
"Snippets"
],
"keywords": [
"snippets",
"react/react-native",
"react-router",
"Redux",
"GraphQL",
"React Hooks",
"Reactotron",
"styled components"
],
"contributes": {
"snippets": [
{
"language": "javascriptreact",
"path": "./snippets/snippets.json"
},
{
"language": "javascript",
"path": "./snippets/snippets.json"
},
{
"language": "typescript",
"path": "./snippets/snippets.json"
},
{
"language": "typescriptreact",
"path": "./snippets/snippets.json"
}
]
},
"devDependencies": {
"json-concat": "^0.0.1"
},
"scripts": {
"concat": "node_modules\\.bin\\json-concat snippets/types/ snippets/snippets.json"
}
}