This repository has been archived by the owner on Jun 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
82 lines (82 loc) · 2.67 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
82
{
"name": "data-marketplace",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "node --require ./load-appinsights.js node_modules/next/dist/bin/next start",
"lint": "eslint \"./**/*.{j,t}s?(x)\"",
"test": "jest",
"prepare": "husky install",
"docker:build": "docker build -t data-marketplace/web -f Dockerfile .",
"docker:run": "docker run -p 3000:3000 --env-file=.env.local data-marketplace/web",
"docker:inspect": "docker run -p 3000:3000 --env-file=.env.local -it data-marketplace/web /bin/sh"
},
"lint-staged": {
"*.{j,t}s?(x)": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"@equinor/data-marketplace-models": "^3.0.0",
"@equinor/eds-core-react": "^0.30.0",
"@equinor/eds-icons": "^0.19.1",
"@equinor/eds-tokens": "^0.9.0",
"@equinor/eds-utils": "^0.7.0",
"@microsoft/applicationinsights-react-js": "^3.4.1",
"@microsoft/applicationinsights-web": "^2.8.11",
"@next/bundle-analyzer": "^13.3.0",
"@portabletext/react": "^2.0.2",
"@portabletext/types": "^2.0.2",
"algoliasearch": "^4.17.0",
"applicationinsights": "^2.5.1",
"axios": "^1.3.5",
"dotenv": "^16.0.3",
"instantsearch.js": "^4.54.0",
"jsdom": "^21.1.0",
"jsonwebtoken": "^9.0.0",
"next": "^13.3.0",
"next-auth": "^4.22.0",
"qs": "^6.11.1",
"query-string": "^8.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-instantsearch-hooks-router-nextjs": "^6.42.1",
"react-instantsearch-hooks-server": "^6.42.1",
"react-instantsearch-hooks-web": "^6.42.1",
"react-intl": "^6.4.1",
"styled-components": "^5.3.9",
"use-local-storage-state": "^18.3.2",
"xss": "^1.0.14"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^18.15.11",
"@types/react": "^18.0.34",
"@types/styled-components": "^5.1.26",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.38.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^13.3.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}