-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.66 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
{
"name": "bibliotekdk-next-api",
"version": "1.0.0",
"description": "API for the future bibliotek.dk",
"main": "src/index.js",
"scripts": {
"dev": "run-p dev:proxy dev:website dev:graphql dev:testuser",
"dev:website": "cd website && npm run dev",
"dev:proxy": "nodemon --ignore 'website/*' --ignore '**/drupalSchema.json' -r esm-wallaby -r esm-wallaby ./src/proxy.js",
"dev:graphql": ". ./env.env && nodemon --ignore 'website/*' --ignore '**/drupalSchema.json' -r esm-wallaby ./src/index.js",
"dev:testuser": "cd testuser-website && npm run dev",
"start": "run-p start:proxy start:website start:graphql start:testuser",
"start:website": "cd website && npm run start",
"start:proxy": "node -r esm-wallaby ./src/proxy.js",
"start:graphql": "node -r esm-wallaby ./src/index.js",
"start:testuser": "cd testuser-website && npm run start",
"test": "jest",
"prettier": "prettier --write 'src/**/*.js'",
"postinstall": "(cd testuser-website && npm i); (cd website && npm i);",
"build": "eslint . && (cd testuser-website && npm run build && npm prune --production) && (cd website && npm run build && npm prune --production);",
"lint": "eslint ."
},
"author": "Frontend @ DBC",
"license": "GNU",
"dependencies": {
"@dbcdk/dbc-audittrail-logger": "^1.0.1-1",
"@graphql-tools/merge": "^8.2.1",
"@graphql-tools/schema": "^8.3.1",
"@graphql-tools/utils": "^8.6.1",
"@graphql-tools/wrap": "^8.3.3",
"bootstrap": "^5.2.2",
"cors": "^2.8.5",
"dataloader": "^2.1.0",
"dayjs": "^1.10.6",
"dbc-node-logger": "^2.0.10",
"esm-wallaby": "^3.2.28",
"express": "^4.17.1",
"fast-jwt": "^3.3.2",
"graphql": "^15.8.0",
"graphql-http": "^1.22.0",
"graphql-query-complexity": "^0.12.0",
"graphql-scalars": "^1.9.1",
"http-proxy-middleware": "^2.0.3",
"ioredis": "^4.17.3",
"isbot": "^3.4.6",
"isomorphic-unfetch": "^3.1.0",
"lodash": "^4.17.19",
"minisearch": "^3.0.2",
"nanoid": "^5.0.8",
"node-cache": "^5.1.0",
"prom-client": "^12.0.0",
"promise-limit": "^2.7.0",
"react-bootstrap": "^2.5.0",
"superagent": "^5.2.2",
"undici": "^5.20.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@eslint/js": "^9.12.0",
"babel-jest": "^26.3.0",
"babel-preset-airbnb": "^5.0.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"globals": "^15.10.0",
"jest": "^26.4.2",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"xml2js": "^0.6.2"
}
}