-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.74 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.74 KB
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
{
"name": "assets",
"version": "26.2.21",
"description": "Frontend assets for MyOrdbok project",
"main": "src/js/index.js",
"scripts": {
"start": "concurrently \"npm run dev\" \"npm run django\"",
"dev": "webpack serve --mode development --config ./assets/webpack.config.js",
"build": "webpack --mode production --config ./assets/webpack.config.js",
"dev-watch": "webpack --mode development --watch --config ./assets/webpack.config.js",
"django:linux": "./venv/bin/python manage.py runserver",
"django:win": ".\\venv\\Scripts\\python manage.py runserver",
"django": "if [ -f \"./venv/bin/python\" ]; then ./venv/bin/python manage.py runserver; else .\\venv\\Scripts\\python manage.py runserver; fi"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/preset-env": "^7.20.0",
"@types/jsdom": "^27.0.0",
"@types/number-to-words": "^1.2.3",
"@types/pluralize": "^0.0.33",
"@types/webpack-hot-middleware": "^2.25.9",
"axios": "^1.6.7",
"babel-loader": "^10.0.0",
"concurrently": "^9.2.1",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.4",
"firebase": "^12.3.0",
"jsdom": "^28.1.0",
"mini-css-extract-plugin": "^2.7.0",
"pinia": "^3.0.3",
"postcss-loader": "^8.2.0",
"sass": "^1.93.0",
"sass-loader": "^16.0.5",
"sharp": "^0.34.5",
"style-loader": "^4.0.0",
"vue": "^3.5.21",
"vue-loader": "^17.0.1",
"vue-router": "^5.0.3",
"webpack": "^5.75.0",
"webpack-bundle-tracker": "^3.2.1",
"webpack-cli": "^6.0.1",
"webpack-dev-middleware": "^7.4.3",
"webpack-dev-server": "^5.2.2",
"webpack-hot-middleware": "^2.26.1",
"webpack-merge": "^6.0.1"
}
}