-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
56 lines (56 loc) · 1.52 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
{
"name": "django_inertia_demo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"runserver": "cross-env PYTHONUNBUFFERED=1 python manage.py runserver",
"parcel": "parcel watch demo/static/src/* -d demo/static/dist/ --public-url /static/dist/",
"build": "parcel build demo/static/src/* -d demo/static/dist/ --public-url /static/dist/",
"dev": "concurrently npm:parcel npm:runserver",
"test_django": "python manage.py test"
},
"posthtml": {
"recognizeSelfClosing": true
},
"watchreload": {
"files": [
"**/*.py",
"**/templates/**/*.html"
]
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.12.3",
"@inertiajs/inertia": "^0.6.0",
"@inertiajs/inertia-vue": "^0.4.2",
"@inertiajs/progress": "^0.2.2",
"@vue/component-compiler-utils": "^3.2.0",
"autoprefixer": "^9.8.6",
"axios": "^0.21.0",
"buttons": "^0.1.2",
"concurrently": "^5.3.0",
"cross-env": "^7.0.2",
"form": "^0.2.4",
"lodash": "^4.17.20",
"parcel": "^2.0.0-nightly.208",
"parcel-plugin-at-alias": "^0.2.0",
"popper.js": "^1.16.1",
"portal-vue": "^2.1.7",
"reset": "^0.1.0",
"sass": "^1.29.0",
"tailwindcss": "^1.9.6",
"underscore": "^1.11.0",
"vue": "^2.6.12",
"vue-hot-reload-api": "^2.3.4",
"vue-template-compiler": "^2.6.12"
},
"devDependencies": {
"parcel-bundler": "^1.12.4",
"parcel-plugin-watch-reload": "^1.0.3"
},
"alias": {
"@/Shared": "demo/static/src/Shared"
}
}