forked from neuroglancerhub/react-neuroglancer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.39 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
{
"name": "@janelia-flyem/react-neuroglancer",
"version": "2.3.7",
"description": "React component wrapping neuroglancer",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"build": "NODE_ENV=production babel src -d lib",
"dev": "NODE_ENV=development babel src --watch --verbose -d lib",
"prepublishOnly": "npm run build"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
},
"author": "Jody Clements",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^24.7.0",
"eslint": "^7.7.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"jest": "^24.7.0",
"prettier": "^2.0.5",
"react-test-renderer": "^16.8.6",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.0"
},
"node": {
"fs": "empty"
},
"dependencies": {
"@janelia-flyem/neuroglancer": "^2.30.0"
},
"peerDependencies": {
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-dom": "^16.5.2"
}
}