-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 2.01 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": "anzu",
"version": "1.0.0",
"description": "Home IDS",
"scripts": {
"build": "run-script-os",
"build:win32": "SET NODE_ENV=production && SET INBUILD=1 && webpack --progress --color --optimization-minimize && npm run flask-static-digest",
"build:default": "NODE_ENV=production INBUILD=1 webpack --progress --color --optimization-minimize && npm run flask-static-digest",
"start": "run-script-os",
"start:win32": "concurrently -n \"WEBPACK,FLASK\" -c \"bgBlue.bold,bgMagenta.bold\" \"npm:webpack-watch:win32\" \"npm:flask-server\"",
"start:default": "concurrently -n \"WEBPACK,FLASK\" -c \"bgBlue.bold,bgMagenta.bold\" \"npm:webpack-watch\" \"npm:flask-server\"",
"webpack-watch": "run-script-os",
"webpack-watch:win32": "SET NODE_ENV=debug && webpack --mode development --watch",
"webpack-watch:default": "NODE_ENV=debug webpack --mode development --watch",
"flask-server": "PYTHONUNBUFFERED=1 flask run --host=0.0.0.0",
"flask-static-digest": "INBUILD=1 flask digest compile",
"lint": "eslint \"assets/js/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/aganita/anzu.git"
},
"author": "Ani Agajanyan",
"license": "MIT",
"engines": {
"node": ">=20"
},
"bugs": {
"url": "https://github.com/aganita/anzu/issues"
},
"homepage": "https://github.com/aganita/anzu#readme",
"dependencies": {
"@fortawesome/fontawesome-free": "6.5.1",
"bootstrap": "5.3.3",
"jquery": "3.7.1",
"@popperjs/core": "2.11.8"
},
"devDependencies": {
"@babel/core": "7.23.9",
"@babel/preset-env": "7.23.9",
"@babel/eslint-parser": "7.23.10",
"babel-loader": "9.1.3",
"chokidar": "3.6.0",
"concurrently": "8.2.2",
"css-loader": "6.10.0",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.29.1",
"less": "4.2.0",
"less-loader": "12.2.0",
"mini-css-extract-plugin": "2.8.0",
"run-script-os": "1.1.6",
"webpack": "5.90.3",
"webpack-cli": "5.1.4"
}
}