-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
74 lines (74 loc) · 1.93 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
{
"name": "coderoad-vscode",
"version": "0.0.1",
"description": "Interactive tutorials in your editor",
"homepage": "https://github.com/shmck/coderoad-vscode/README.md",
"bugs": {
"url": "https://github.com/shmck/coderoad-vscode/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/shmck/coderoad-vscode.git"
},
"license": "SEE LICENSE IN LICENSE.md",
"author": {
"name": "Shawn McKay <[email protected]>"
},
"main": "./build/extension.js",
"scripts": {
"build": "rm -rf build && concurrently \"npm run build:ext\" \"npm run build:web\"",
"build:ext": "npm run compile",
"build:web": "cd web-app && npm run build",
"compile": "tsc -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"machine": "node ./out/state/index.js",
"storybook": "cd web-app && npm run storybook",
"test": "npm run build && node ./node_modules/vscode/bin/test",
"vscode:prepublish": "npm run build",
"watch": "tsc -watch -p ./"
},
"dependencies": {
"dotenv": "^8.1.0",
"graphql": "^14.4.2",
"graphql-request": "^1.8.2",
"graphql-tag": "^2.10.1",
"vscode": "^1.1.36",
"xstate": "^4.6.7"
},
"devDependencies": {
"@types/dotenv": "^6.1.1",
"@types/graphql": "^14.2.3",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.2",
"concurrently": "^4.1.2",
"prettier": "^1.18.2",
"tslint": "^5.19.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.3"
},
"engines": {
"vscode": "^1.34.0"
},
"activationEvents": [
"onCommand:coderoad.start"
],
"categories": [
"Other"
],
"contributes": {
"commands": [
{
"command": "coderoad.start",
"title": "Start",
"category": "CodeRoad"
}
]
},
"displayName": "CodeRoad",
"galleryBanner": {
"color": "#C80000",
"theme": "dark"
},
"publisher": "Shawn McKay"
}