forked from galaxyproject/galaxy-hub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 3.4 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
{
"name": "galaxy-hub",
"private": true,
"engines": {
"node": ">=14.14"
},
"repository": {
"type": "git",
"url": "https://github.com/galaxyproject/galaxy-hub.git"
},
"scripts": {
"build": "src/build/run.mjs build",
"links:internal": "src/build/check-links.mjs",
"serve": "http-server ./dist/",
"develop": "src/build/run.mjs develop",
"preprocess": "src/build/preprocess.mjs preprocess",
"format": "prettier --write '*.js' 'cypress/**/*.js' 'src/**/{*.js,*.mjs,*.scss,*.vue}' '!src/.temp/**'",
"format:check": "prettier --check '*.js' 'cypress/**/*.js' 'src/**/{*.js,*.mjs,*.scss,*.vue}' '!src/.temp/**'",
"markdown:lint": "markdownlint 'content/**/*.md'",
"lint": "eslint src/**/*.{mjs,js,vue}",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"build-and-serve": "yarn build && yarn serve",
"test": "start-server-and-test build-and-serve http://localhost:8080 cypress:run",
"test:interactive": "start-server-and-test develop http://localhost:8080 cypress:open",
"test:links": "start-server-and-test build-and-serve http://localhost:8080 links:internal"
},
"dependencies": {
"@babel/core": "^7.16.5",
"@fortawesome/fontawesome-free": "^5.15.4",
"@gridsome/plugin-sitemap": "^0.4.0",
"@gridsome/source-filesystem": "^0.6.2",
"@gridsome/transformer-remark": "^0.6.4",
"@gridsome/transformer-yaml": "^0.2.1",
"@gridsome/vue-remark": "^0.2.6",
"axios": "^0.21.4",
"binary-search": "^1.3.6",
"bootstrap": "<5.0",
"bootstrap-vue": "^2.21.2",
"commander": "^8.2.0",
"dayjs": "^1.10.7",
"gridsome": "^0.7.0",
"gridsome-plugin-feed": "^1.0.2",
"ics": "^2.35.0",
"jiti": "^1.12.0",
"lodash": "^4.17.21",
"magic-snowflakes": "^6.1.0",
"markdownlint": "^0.24.0",
"markdownlint-cli": "^0.29.0",
"node-watch": "^0.7.1",
"prettier": "^2.4.0",
"rehype-parse": "^8.0.3",
"remark": "^13.0.0",
"remark-attr": "^0.11.1",
"remark-frontmatter": "^3.0.0",
"remark-html": "^13.0.2",
"remark-parse": "^9.0.0",
"remark-stringify": "^9.0.0",
"remark-toc": "^8.0.0",
"sass": "^1.39.2",
"stylus": "^0.55.0",
"stylus-loader": "3.0.2",
"unified": "^10.1.0",
"unified-engine": "^9.0.4",
"unist-util-visit": "^4.0.0",
"url-parse": "^1.5.10",
"vega": "^5.21.0",
"vega-embed": "^6.20.5",
"vega-lite": "^5.2.0",
"vue-tweet-embed": "^2.4.0",
"which": "^2.0.2"
},
"devDependencies": {
"@babel/preset-env": "^7.15.8",
"@testing-library/cypress": "^8.0.1",
"axe-core": "^4.3.3",
"broken-link-checker": "^0.7.8",
"cpy": "^8.1.2",
"cypress": "8.6.0",
"cypress-axe": "^0.13.0",
"eslint": "^7.32.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-vue": "^7.17.0",
"http-server": "^13.0.2",
"jest": "^27.3.1",
"sass-loader": "^10.1.1",
"start-server-and-test": "^1.14.0"
},
"resolutions": {
"**/sharp": "0.30.4"
},
"prettier": {
"printWidth": 120,
"tabWidth": 4
},
"jest": {
"moduleFileExtensions": [
"mjs",
"js",
"jsx",
"ts",
"tsx",
"json",
"node"
],
"testMatch": [
"**/?(*.)test.?js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/cypress/"
],
"transform": {
"^.+\\.m?js$": "babel-jest"
},
"transformIgnorePatterns": [
"\\.pnp\\.[^\\/]+$"
]
}
}