-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 866 Bytes
/
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
{
"name": "django_template",
"version": "1.0.0",
"description": "A starting template for django web application",
"main": "index.js",
"scripts": {
"dev": "parcel src/django_template/static/parcel-entry.js -o main",
"watch": "parcel src/django_template/static/parcel-entry.js -o main --out-dir src/django_template/static/bundles",
"build": "parcel build src/django_template/static/parcel-entry.js -o main --out-dir src/django_template/static/bundles"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vaszig/django_template.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/vaszig/django_template/issues"
},
"homepage": "https://github.com/vaszig/django_template#readme",
"devDependencies": {
"parcel-bundler": "^1.12.5",
"sass": "^1.49.11"
}
}