This repository has been archived by the owner on Aug 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.93 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
{
"name": "bnr-branded",
"version": "1.0.0",
"description": "BNR Branded POC",
"main": "index.js",
"scripts": {
"build": "next build",
"dev": "next dev",
"docker:build": "docker build -t bnr-branded .",
"docker:logs": "docker logs bnr-branded",
"docker:pull": "docker pull ghcr.io/fdmediagroep/bnr-branded:main",
"docker:run": "docker run -d -p 3000:3000 --env-file .env --name bnr-branded bnr-branded",
"docker:restart": "docker restart bnr-branded",
"docker:stop": "docker stop bnr-branded && docker rm bnr-branded && docker image prune -f",
"docker:tag": "docker tag ghcr.io/fdmediagroep/bnr-branded:main bnr-branded:latest",
"start": "next start",
"lint": "eslint \"src/**\"",
"prettier": "prettier -c **/*.ts?",
"vc:rm": "vc rm bnr-branded --safe --yes",
"test": "jest --passWithNoTests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FDMediagroep/bnr-branded.git"
},
"author": "FDMediagroep",
"license": "ISC",
"bugs": {
"url": "https://github.com/FDMediagroep/bnr-branded/issues"
},
"homepage": "https://github.com/FDMediagroep/bnr-branded#readme",
"devDependencies": {
"@fdmg/bnr-design-system": "^0.1.8",
"@fdmg/css-grid": "^2.0.13",
"@fdmg/resubstitute": "^0.1.1",
"@graphql-inspector/core": "^2.6.1",
"@graphql-tools/load": "^6.2.8",
"@graphql-tools/merge": "^6.2.14",
"@graphql-tools/schema": "^7.1.5",
"@graphql-tools/url-loader": "^6.10.1",
"@sanity/client": "^2.11.0",
"@sanity/image-url": "^0.140.22",
"@types/cookie": "^0.4.0",
"@types/graphql-depth-limit": "^1.1.2",
"@types/jest": "^26.0.23",
"@types/next-auth": "^3.15.0",
"@types/node": "^15.12.4",
"@types/openid-client": "^3.7.0",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"@typescript-eslint/typescript-estree": "^4.28.0",
"cookie": "^0.4.1",
"eslint": "^7.29.0",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"express-graphql": "^0.12.0",
"graphql": "^15.5.1",
"graphql-depth-limit": "^1.1.0",
"graphql-tag": "^2.12.4",
"jest": "^27.0.5",
"jest-css-modules": "^2.1.0",
"jest-transform-graphql": "^2.1.0",
"micro-cors": "^0.1.1",
"next": "^11.0.1",
"next-auth": "^3.27.0",
"openid-client": "^4.7.4",
"player.js": "^0.1.0",
"prettier": "^2.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sass": "^1.35.1",
"ts-jest": "^27.0.3",
"typescript": "^4.3.4"
}
}