-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
81 lines (81 loc) · 2.71 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "lindat-common",
"version": "3.4.1",
"main": "dist/public/js/angular-lindat.js",
"description": "Common Lindat Theme (header and footer)",
"license": "MIT",
"homepage": "https://lindat.mff.cuni.cz/",
"bugs": {
"url": "https://github.com/ufal/lindat-common/issues"
},
"keywords": [
"lindat",
"theme",
"angular"
],
"repository": {
"type": "git",
"url": "https://github.com/ufal/lindat-common.git"
},
"authors": [
"Amir Kamran <[email protected] >",
"Ondřej Košarko <[email protected]>",
"Jozef Mišutka <[email protected]>",
"Michal Sedlák <[email protected]>"
],
"dependencies": {
"angular": "^1.8.3",
"clipboard": "~1.6.1",
"jquery": "^3.7.1"
},
"scripts": {
"postinstall": "patch-package",
"clean": "npm run clean-dist && npm run clean-pages",
"clean-dist": "node cleanup.js dist dist.zip dist.tar.gz .build",
"clean-pages": "node cleanup.js pages",
"prebuild": "npm run clean-dist",
"build": "npm run build-new_theme && npm run build-refbox_and_angular",
"build-pages": "npm run clean-pages && npm run build-new_theme -- --pages && webpack --pages --mode production --config webpack/production.js ",
"build-new_theme": "node build_new_theme.mjs",
"build-refbox_and_angular": "webpack --mode production --config webpack/production.js",
"prestart": "npm run build-new_theme -- --debug && npm run build-refbox_and_angular",
"start": "webpack-dev-server -p --debug --quiet",
"scrape": "protractor --specs=src/new_theme/scripts/scrape.js",
"serve-pages": "webpack-dev-server -p --debug --quiet --content-base=pages",
"pretest": "webdriver-manager update --standalone",
"prepublish": "npm run clean && npm run build",
"test:only": "protractor",
"test": "run-p --race start test:only",
"release": "mversion minor"
},
"devDependencies": {
"patch-package": "^8.0.0",
"angular-google-analytics": "^1.1.3",
"angular-piwik": "git+https://github.com/mike-spainhower/angular-piwik.git",
"autoprefixer": "^9.8.8",
"css-loader": "^3.6.0",
"i18n-webpack-plugin": "^1.0.0",
"ignore-assets-webpack-plugin": "^2.0.1",
"less": "^3.13.1",
"less-loader": "^7.3.0",
"mini-css-extract-plugin": "^0.8.2",
"mustache-loader": "^1.4.3",
"mversion": "^1.13.0",
"ng-annotate-loader": "^0.6.1",
"npm-run-all": "^4.1.5",
"postcss-loader": "^3.0.0",
"protractor": "^5.4.3",
"style-loader": "^1.3.0",
"url-loader": "^2.3.0",
"webpack": "^4.47.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.3",
"webpack-merge": "^4.2.2"
},
"engines": {
"node": ">=12.0.0"
},
"browserslist": [
"defaults"
]
}