-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.57 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.57 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "tanterne",
"version": "1.0.0",
"description": "DK5 Digital",
"main": "src/main.js",
"scripts": {
"pa11y": "pa11y-ci -c pa11y/config.json",
"test:pa11y": ". ./env.env && npm run start & npm run wait && npm run pa11y",
"test:pa11y:local": "npm run start:local & npm run wait && npm run pa11y",
"dev": "npm run build:dev & . ./env.env && npm run serve",
"lint": "eslint ./src ./cypress/integration --cache",
"serve": "nodemon --exec node --no-stdin src/main.js",
"serve:ci": "node -r @babel/register src/main.js",
"build": "NODE_ENV=production webpack --define process.env.NODE_ENV='\"production\"' --progress --colors -p",
"build:dev": "webpack --progress --colors --watch -d",
"precommit": "npm run lint && npm run test && npm run test:integration:local",
"test": ". ./test.env && mocha --recursive ./src/**/*.test.js --require @babel/register",
"start": "npm run build && npm run serve",
"start:local": ". ./env.env && . ./test.env && npm run serve",
"test:integration": "bash scripts/test-integration.sh",
"test:integration:local": "npm run build && npm run start:local & npm run wait && . ./env.env && . ./test.env && npm run cy:open",
"test:integration:jenkins": "bash scripts/test-integration.sh",
"wait": "wait-on ${HOST:-http://localhost}:${PORT:-3000} && wait-on ${HOST:-http://localhost}:${PRO_PORT:-3001}",
"cy:run": "cypress run",
"cy:open": "cypress open",
"load:elastic": "bash scripts/load-elastic.sh ${ISO_FILE:-data/dk5_total.iso2709} ${FILTER:-}"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DBCDK/tanterne.git"
},
"keywords": [
"DK5"
],
"author": "DBCDK",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/DBCDK/tanterne/issues"
},
"engines": {
"node": ">=20.0.0"
},
"targets": {
"ie": "11"
},
"homepage": "https://github.com/DBCDK/tanterne#readme",
"browserslist": [
"last 2 versions"
],
"dependencies": {
"@babel/core": "^7.11.0",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-async-to-generator": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/polyfill": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@babel/register": "^7.10.5",
"@babel/runtime": "^7.11.0",
"autocomplete": "^0.0.1",
"autoprefixer": "^9.8.6",
"babel-loader": "^8.1.0",
"dbc-node-logger": "^2.0.9",
"@elastic/elasticsearch": "^8.19.1",
"fast-levenshtein": "^3.0.0",
"koa": "^2.13.0",
"koa-body": "^4.2.0",
"koa-convert": "^1.2.0",
"koa-router": "^9.1.0",
"koa-static": "^5.0.0",
"preact": "8.4.2",
"preact-compat": "3.19.0",
"preact-enroute": "1.2.3",
"prop-types": "^15.7.2",
"react-simpletabs": "^0.7.0",
"request": "^2.88.2",
"stdio": "^2.1.1",
"superagent": "^5.3.1"
},
"devDependencies": {
"@babel/traverse": "^7.11.0",
"@babel/types": "^7.11.0",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"css-loader": "^4.2.0",
"cssnano": "^4.1.10",
"cypress": "^13.6.2",
"eslint": "^7.6.0",
"eslint-plugin-react": "^7.20.5",
"hard-source-webpack-plugin": "^0.13.1",
"mini-css-extract-plugin": "^0.9.0",
"mocha": "^8.1.0",
"sass": "^1.69.0",
"nodemon": "^2.0.4",
"pa11y-ci": "^2.3.0",
"postcss-inline-svg": "^4.1.0",
"postcss-loader": "^3.0.0",
"sass-loader": "^9.0.2",
"sinon": "^9.0.2",
"style-loader": "^1.2.1",
"wait-on": "^5.1.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
}
}