-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.78 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.78 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
51
52
53
54
55
56
57
{
"name": "xl_auth",
"version": "1.11.0",
"author": "National Library of Sweden",
"license": "Apache-2.0",
"description": "Authorization and OAuth2 provider for LibrisXL",
"homepage": "https://github.com/libris/xl_auth#readme",
"bugs": {
"url": "https://github.com/libris/xl_auth/issues"
},
"scripts": {
"build": "NODE_ENV=production webpack --progress --color --optimization-minimize && uv run flask digest compile",
"build-no-flask": "NODE_ENV=production webpack --progress --color --optimization-minimize",
"start": "concurrently -n \"WEBPACK,FLASK\" -c \"bgBlue.bold,bgMagenta.bold\" \"npm run webpack-watch\" \"npm run flask-server\"",
"webpack-watch": "NODE_ENV=debug webpack --mode development --watch",
"flask-server": "FLASK_APP=$PWD/autoapp.py FLASK_DEBUG=1 uv run flask run --port 5001",
"lint": "eslint \"assets/js/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/libris/xl_auth.git"
},
"keywords": [
"kb",
"libris",
"oauth2"
],
"engines": {
"node": ">=14.17.0",
"npm": ">=6.14.13"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/eslint-parser": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"ajv": "^8.12.0",
"babel-loader": "^9.1.3",
"concurrently": "^3.6.1",
"css-loader": "^6.8.1",
"eslint": "^8.46.0",
"eslint-config-google": "^0.9.1",
"eslint-plugin-import": "^2.28.0",
"kungbib-styles": "^1.3.3",
"less": "^4.1.1",
"less-loader": "^10.0.0",
"mini-css-extract-plugin": "^1.6.0",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.3",
"bootstrap": "^3.4.1",
"font-awesome": "^4.7.0",
"jquery": "^3.6.0"
}
}