-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
150 lines (150 loc) · 3.78 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"name": "django-man",
"displayName": "Django Manager",
"description": "An extension to execute django project commands from within VSCode Command Center.",
"version": "0.0.3",
"engines": {
"vscode": "^1.82.0"
},
"repository": {
"type": "git",
"url": "https://github.com/theHamdiz/django-man.git"
},
"publisher": "Ahmad-Hamdi",
"icon": "images/logo.png",
"categories": [
"Other",
"Programming Languages",
"Snippets",
"Extension Packs"
],
"keywords": [
"django",
"python",
"web-development",
"database",
"migration",
"server",
"management",
"commands",
"admin",
"models",
"django-man",
"django manager",
"django management",
"django-management",
"python backend",
"python framework",
"python django",
"django tool",
"manager"
],
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "django-man.check",
"title": "Django > Check Project"
},
{
"command": "django-man.createsuperuser",
"title": "Django > Create/Add Superuser"
},
{
"command": "django-man.startproject",
"title": "Django > Start/Create/New Project"
},
{
"command": "django-man.startapp",
"title": "Django > Start/Create/New App"
},
{
"command": "django-man.runserver",
"title": "Django > Run/Start Server"
},
{
"command": "django-man.stopserver",
"title": "Django > Stop/Kill Running Server"
},
{
"command": "django-man.makemigrations",
"title": "Django > Make Migrations"
},
{
"command": "django-man.migrate",
"title": "Django > Migrate"
},
{
"command": "django-man-showmigrations",
"title": "Django > Show Migrations"
},
{
"command": "django-man-dumpdata",
"title": "Django > Dump Data"
},
{
"command": "django-man-loaddata",
"title": "Django > Load Data"
},
{
"command": "django-man-flush",
"title": "Django > Flush Database"
},
{
"command": "django-man-dbshell",
"title": "Django > Open Database Shell (dbshell)"
},
{
"command": "django-man-shell",
"title": "Django > Open Django Shell"
},
{
"command": "django-man-sendtestemail",
"title": "Django > Send Test Email"
},
{
"command": "django-man-collectstatic",
"title": "Django > Collect Static Files"
},
{
"command": "django-man-clearsessions",
"title": "Django > Clear Expired Sessions"
},
{
"command": "django-man-changepassword",
"title": "Django > Change User Password"
},
{
"command": "django-man.adminifyModels",
"title": "Django > Adminify Models"
}
]
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.82.0",
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"eslint": "^8.47.0",
"glob": "^10.3.3",
"mocha": "^10.2.0",
"typescript": "^5.1.6",
"ts-loader": "^9.4.4",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"@vscode/test-electron": "^2.3.4"
}
}