-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.92 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
{
"name": "community-catalog",
"version": "0.1.0",
"description": "Zooniverse-powered website for exploring community-tagged images",
"main": "index.js",
"scripts": {
"build": "export HEAD_COMMIT=${HEAD_COMMIT:-$(git rev-parse --short HEAD)} ; webpack --config webpack.prod.js",
"start": "webpack serve --config webpack.dev.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/zooniverse/community-catalog.git"
},
"keywords": [
"zooniverse"
],
"author": "Zooniverse <[email protected]> (https://www.zooniverse.org/)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/zooniverse/community-catalog/issues"
},
"homepage": "https://github.com/zooniverse/community-catalog#readme",
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/preset-env": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^14.1.2",
"babel-loader": "^9.1.3",
"babel-plugin-transform-imports": "^2.0.0",
"html-webpack-plugin": "^5.5.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"process": "^0.11.10",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"@zooniverse/grommet-theme": "^3.2.0",
"@zooniverse/panoptes-js": "^0.5.1",
"@zooniverse/react-components": "~1.8.0",
"grommet": "^2.34.1",
"grommet-icons": "^4.11.0",
"mobx": "^6.12.0",
"mobx-react": "^7.6.0",
"mobx-state-tree": "^5.4.2",
"panoptes-client": "^5.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.20.0",
"styled-components": "^5.3.11",
"url": "^0.11.3"
},
"overrides": {
"markdown-it": "~13.0.2",
"trim": "^1.0.1"
},
"engines": {
"node": ">= 20",
"npm": ">= 10"
}
}