-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
118 lines (118 loc) · 3.3 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "mobtime",
"displayName": "Mobtime",
"description": "A Collaborative Timer For Your Mob Team, https://mobti.me/",
"version": "1.0.4",
"engines": {
"vscode": "^1.53.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onView:mobtime-sidebar",
"onStartupFinished"
],
"publisher": "mobtime",
"main": "./dist/extension.js",
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/mobtimeapp/mobtime-vscode-extension.git"
},
"license": "ISC",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "mobtime-sidebar-view",
"title": "MobTime",
"icon": "media/icon.svg"
}
]
},
"views": {
"mobtime-sidebar-view": [
{
"type": "webview",
"id": "mobtime-sidebar",
"name": "MobTime",
"icon": "media/icon.svg",
"contextualTitle": "MobTime"
}
]
}
},
"scripts": {
"vscode:prepublish": "yarn run package",
"compile:extension": "webpack",
"compile:app": "webpack -c ./src/app/webpack.config.js --mode=production",
"watch:extension": "webpack --watch",
"watch:app": "webpack --watch -c ./src/app/webpack.config.js --mode=development",
"watch": "npm-run-all -p watch:*",
"compile": "npm-run-all compile:*",
"package": "webpack --mode production --devtool hidden-source-map",
"test-compile": "tsc -p ./",
"test-watch": "tsc -watch -p ./",
"pretest": "yarn run test-compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"test:app": "jest",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"bundle-extension": "vsce package"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/preset-env": "^7.12.13",
"@babel/preset-react": "^7.12.13",
"@storybook/addon-actions": "^6.1.17",
"@storybook/addon-essentials": "^6.1.17",
"@storybook/addon-links": "^6.1.17",
"@storybook/react": "^6.1.17",
"@testing-library/react": "^11.2.5",
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.20",
"@types/mocha": "^8.0.4",
"@types/node": "^12.11.7",
"@types/react": "^17.0.1",
"@types/react-beautiful-dnd": "^13.0.0",
"@types/react-dom": "^17.0.0",
"@types/vscode": "^1.53.0",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"eslint": "^7.19.0",
"glob": "^7.1.6",
"jest": "^26.6.3",
"mocha": "^8.2.1",
"npm-run-all": "^4.1.5",
"react-test-renderer": "^17.0.1",
"ts-jest": "^26.5.1",
"ts-loader": "^8.0.14",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"vsce": "^2.7.0",
"vscode-test": "^1.5.0",
"webpack": "^5.19.0",
"webpack-cli": "^4.4.0"
},
"dependencies": {
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.1.5",
"@mobtime/sdk": "^1.0.0-beta.6",
"framer-motion": "^3.3.0",
"react": "^17.0.1",
"react-beautiful-dnd": "^13.0.0",
"react-dom": "^17.0.1",
"react-icons": "^4.2.0",
"react-rewards": "^1.1.2",
"ws": "^7.4.3"
},
"optionalDependencies": {
"bufferutil": "^4.0.3",
"utf-8-validate": "^5.0.4"
}
}