-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
84 lines (84 loc) · 2.23 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
76
77
78
79
80
81
82
83
84
{
"name": "coderoad",
"version": "0.1.0",
"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 && npm run build:ext && npm run build:web",
"build:ext": "tsc -p ./",
"build:web": "cd web-app && npm run build",
"postbuild:web": "cp -R ./web-app/build/ ./build/",
"postinstall": "node ./node_modules/vscode/bin/install",
"lint": "eslint src/**/*ts",
"machine": "node ./out/state/index.js",
"storybook": "cd web-app && npm run storybook",
"test": "jest",
"test:ext": "node ./build/test/runTest.js",
"vscode:prepublish": "npm run build",
"watch": "tsc -watch -p ./"
},
"dependencies": {
"@sentry/electron": "^1.2.0",
"@sentry/node": "^5.11.1",
"chokidar": "^3.3.0",
"dotenv": "^8.2.0",
"jsdom": "^16.0.1"
},
"devDependencies": {
"@types/assert": "^1.4.4",
"@types/chokidar": "^2.1.3",
"@types/dotenv": "^8.2.0",
"@types/glob": "^7.1.1",
"@types/jest": "^24.9.1",
"@types/jsdom": "^12.2.4",
"@types/node": "^13.5.0",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"graphql": "^14.6.0",
"prettier": "^1.19.1",
"ts-jest": "^25.0.0",
"typescript": "^3.7.5",
"vscode": "^1.1.36",
"vscode-test": "^1.3.0"
},
"engines": {
"vscode": "^1.40.0"
},
"activationEvents": [
"onCommand:coderoad.start"
],
"categories": [
"Other"
],
"contributes": {
"commands": [
{
"command": "coderoad.start",
"title": "Start",
"category": "CodeRoad"
}
]
},
"displayName": "CodeRoad",
"galleryBanner": {
"color": "#C80000",
"theme": "dark"
},
"publisher": "CodeRoad"
}