-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
78 lines (78 loc) · 2.38 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
{
"name": "zooniverse-react-components",
"version": "0.14.2",
"description": "Zooniverse-React-Components ===========================",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"sideEffects": false,
"scripts": {
"start": "echo 'Nothing to see here yet'",
"build": "rm -rf lib && npm run build:cjs && npm run build:esm && npm run build-css",
"build:cjs": "babel src --out-dir lib/cjs",
"build:esm": "BABEL_ENV=es6 babel src --out-dir lib/esm",
"build-css": "stylus src/css/zooniverse-react-components.styl --out lib",
"test": "mocha --reporter nyan --require @babel/register test/setup.js test/*.test.js",
"lint": "eslint src",
"prepare": "npm run build",
"preversion": "npm test",
"version": "npm run build && git add -A lib",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/zooniverse/Zooniverse-React-Components.git"
},
"author": "Zooniverse",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/zooniverse/Zooniverse-React-Components/issues"
},
"homepage": "https://github.com/zooniverse/Zooniverse-React-Components",
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.5",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/register": "^7.18.9",
"chai": "^4.3.7",
"dirty-chai": "^2.0.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.7",
"eslint": "^8.28.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.10",
"jsdom": "^23.0.0",
"mocha": "^10.1.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-test-renderer": "^16.2.0",
"sinon": "^17.0.0",
"stylus": "^0.62.0"
},
"dependencies": {
"animated-scrollto": "^1.1.0",
"data-uri-to-blob": "0.0.4",
"grommet": "^1.8.2",
"markdownz": "^9.1.3",
"modal-form": "^2.9.1",
"panoptes-client": "^5.0.0",
"prop-types": "^15.7.2",
"react-select": "1.0.0-rc.10",
"react-swipe": "^6.0.4"
},
"overrides": {
"markdown-it": "^13.0.1",
"superagent": "^8.0.8"
},
"peerDependencies": {
"react": "^16.14.0",
"react-dom": "^16.14.0"
},
"engines": {
"node": ">=16.14",
"npm": ">=8"
}
}