-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 3.62 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "skyviewer-client",
"version": "0.1.0",
"author": "Rubin EPO",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/lsst-epo/skyviewer-client"
},
"scripts": {
"dev": "next dev",
"static": "npm-run-all static:*",
"static:build": "next build --debug",
"static:export": "next export",
"start": "next start -p 8080",
"bs": "next build && next start -p 3000",
"commitlint": "commitlint --edit",
"prepare": "husky install",
"precommit": "lint-staged",
"lint": "npm-run-all lint:*",
"lint:js": "prettier --check \"**/*.{js,jsx}\" & eslint -c .eslintrc.js \"**/*.{js,jsx,ts,tsx}\"",
"lint:scss": "stylelint --config .stylelintrc.js \"**/*.scss\"",
"fix": "npm-run-all fix:js fix:scss fix:styled",
"fix:js": "prettier --write \"**/*.{js,jsx}\" && eslint -c .eslintrc.js \"**/*.{js,jsx,ts,tsx}\" --fix",
"fix:scss": "stylelint --config .stylelintrc.js \"**/*.scss\" --fix",
"release": "commit-and-tag-version",
"codegen": "graphql-codegen --config codegen.ts"
},
"commit-and-tag-version": {
"skip": {
"commit": true
}
},
"babel": {
"presets": [
"next/babel"
],
"plugins": [
[
"babel-plugin-styled-components",
{
"ssr": true,
"displayName": true
}
]
]
},
"browserslist": [
"defaults",
"not IE 11"
],
"lint-staged": {
"*.{js,jsx}": "yarn fix:js",
"*.scss": "yarn fix:scss",
"**/styles.js": "yarn fix:styled"
},
"dependencies": {
"@babel/runtime": "7.11.2",
"@rubin-epo/epo-react-lib": "^2.1.2",
"@urql/next": "^1.1.1",
"aladin-lite": "^3.4.5",
"classnames": "^2.5.1",
"copy-to-clipboard": "^3.3.1",
"file-saver": "^2.0.5",
"focus-trap": "^6.1.2",
"focus-visible": "^5.1.0",
"graphql": "^16.9.0",
"graphql-request": "6",
"i18next": "23",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-resources-to-backend": "^1.2.1",
"lodash": "^4.17.21",
"next": "14",
"next-i18n-router": "^5.5.1",
"prettier": "^2.2.1",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "13",
"react-share": "^4.4.0",
"sass": "^1.77.8",
"styled-components": "^6.1.11",
"swr": "^0.5.6",
"urql": "^4.1.0",
"use-resize-observer": "^9.1.0"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@graphql-codegen/cli": "5.0.2",
"@graphql-codegen/client-preset": "4.3.3",
"@types/file-saver": "^2.0.7",
"@types/lodash": "^4.17.7",
"@types/node": "^20.14.12",
"@types/react": "18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-slider": "^1.3.6",
"@typescript-eslint/parser": "^7.17.0",
"babel-plugin-styled-components": "^2.1.4",
"commit-and-tag-version": "^12.4.1",
"eslint": "^8.4.1",
"eslint-config-next": "14",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.2.0",
"husky": "^8.0.3",
"npm-run-all": "^4.1.5",
"postcss-preset-env": "^9.6.0",
"stylelint": "16",
"stylelint-config-recess-order": "4",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-scss": "^4.0.1",
"typescript": "^5.5.4",
"typescript-plugin-css-modules": "^5.1.0"
},
"resolutions": {
"**/ansi-regex": "^5.0.1",
"**/glob-parent": "^5.1.2"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}