-
Notifications
You must be signed in to change notification settings - Fork 103
/
package.json
48 lines (48 loc) · 1.42 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
{
"private": true,
"scripts": {
"start": "concurrently --raw yarn:manage:runserver yarn:build:dev",
"manage:runserver": "pipenv run python manage.py runserver",
"build:prod": "webpack",
"build:dev": "webpack --watch --mode='development'",
"docs:serve": "pipenv run mkdocs serve",
"docs:build": "pipenv run mkdocs build",
"docs:publish": "pipenv run mkdocs gh-deploy"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"concurrently": "^7.2.2",
"css-loader": "^2.1.1",
"eslint": "^6.6.0",
"eslint-plugin-vue": "^5.2.2",
"file-loader": "^3.0.1",
"mini-css-extract-plugin": "^0.6.0",
"sass": "^1.52.3",
"sass-loader": "^7.1.0",
"vue-eslint-parser": "^6.0.4",
"vue-loader": "^15.7.0",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.17",
"@fortawesome/free-solid-svg-icons": "^5.8.1",
"@fortawesome/vue-fontawesome": "^0.1.6",
"axios": "^0.27.2",
"bootstrap": "^4.3.1",
"chart.js": "^2.8.0",
"jquery": "^3.4.0",
"moment": "^2.29.4",
"moment-duration-format": "^2.2.2",
"moment-timezone": "^0.5.25",
"pickadate": "^3.6.3",
"popper.js": "^1.15.0",
"vue": "^2.6.10",
"vue-router": "^3.0.6",
"vuex": "^3.1.0"
}
}