forked from kookmin-sw/capstone-2024-27
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.66 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
{
"name": "codate",
"displayName": "Codate",
"version": "0.1.2",
"description": "Make your team project easier with Codate",
"publisher": "DongSeokSon",
"author": {
"name": "DongSeok Son",
"email": "[email protected]"
},
"readme": "README.md",
"changelog": "CHANGELOG.md",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kookmin-sw/capstone-2024-27.git"
},
"icon": "public/codate-color.png",
"activationEvents": [
"onCommand:react-webview.start"
],
"engines": {
"vscode": "^1.23.0"
},
"main": "./build/ext-src/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "codate",
"title": "Codate",
"icon": "public/codate-mono.svg"
}
]
},
"views": {
"codate": [
{
"id": "codate.views",
"name": "Get Started",
"icon": "public/codate-color.svg"
}
]
},
"viewsWelcome": [
{
"view": "codate.views",
"contents": "# Welcome to Codate!! \n\nYou can start finding your teammates with Codate. \n\nIf you need more information, please visit my [github](https://github.com/kookmin-sw/capstone-2024-27). \n[Get Started](command:react-webview.start)"
}
],
"commands": [
{
"command": "react-webview.start",
"title": "Start React Webview",
"category": "Codate"
}
]
},
"dependencies": {
"@material-ui/icons": "^4.11.3",
"@material-ui/lab": "^4.0.0-alpha.61",
"@react-spring/web": "^9.7.3",
"@types/trusted-types": "^2.0.7",
"axios": "^1.6.8",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-router-dom": "^6.22.3",
"react-tinder-card": "^1.6.4",
"react-transition-group": "^4.4.5",
"terser": "^5.15.0",
"web-vitals": "^3.5.2",
"yarn": "^1.22.19"
},
"resolutions": {},
"scripts": {
"vscode:prepublish": "node ./scripts/build-non-split.js && tsc -p tsconfig.extension.json",
"postinstall": "node ./node_modules/vscode/bin/install",
"start": "react-scripts start",
"build": "node ./scripts/build-non-split.js && tsc -p tsconfig.extension.json",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"make-package": "vsce package --no-yarn"
},
"devDependencies": {
"@types/jest": "^23.3.13",
"@types/node": "^10.1.2",
"@types/react": "^16.14.60",
"@types/react-dom": "^16.0.5",
"react-scripts": "^5.0.1",
"rewire": "^6.0.0",
"typescript": "^4.9.5",
"vscode": "^1.1.17"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}