-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.85 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
{
"name": "Virtual_Fly_Brain",
"version": "1.0.0",
"description": "A hub for Drosophila melanogaster neural anatomy and imaging data.",
"repository": "http://git.geppetto.org",
"license": "MIT",
"scripts": {
"test": "jest --verbose",
"update-tests-snapshots": "jest --updateSnapshot",
"prebuild": "eslint . --color",
"build": "webpack -p --progress",
"prebuild-dev": "eslint . --color",
"build-dev": "webpack --devtool eval",
"prebuild-dev-noTest": "eslint . --color",
"build-dev-noTest": "webpack --devtool source-map --env.noTest=true",
"prebuild-dev-noTest:watch": "eslint . --color",
"build-dev-noTest:watch": "webpack --devtool source-map --env.noTest=true --progress --watch",
"prestart": "eslint . --color",
"start": "node --max_old_space_size=2048 node_modules/webpack-dev-server/bin/webpack-dev-server.js --progress --config webpack.config.dev.js"
},
"dependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.4.5",
"@geppettoengine/geppetto-client": "file:./geppetto-client",
"@material-ui/icons": "^4.0.0",
"@material-ui/lab": "^4.0.0-alpha.57",
"@types/react-rnd": "^8.0.0",
"axios": "^0.19.2",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^3.0.0",
"exports-loader": "^0.6.3",
"html-webpack-plugin": "^3.2.0",
"ignore-loader": "^0.1.2",
"imports-loader": "^0.7.1",
"jest": "^25.0.0",
"jest-image-snapshot": "^4.1.0",
"jest-puppeteer": "^4.3.0",
"less-loader": "^5.0.0",
"material-ui-dropzone": "^3.5.0",
"mini-css-extract-plugin": "^0.7.0",
"puppeteer": "^1.17.0",
"react-collapsible": "^2.3.1",
"react-color": "^2.17.3",
"react-tabs": "^3.2.3",
"react-redux": "^7.0.3",
"redux": "^4.0.1",
"style-loader": "^0.13.2",
"url-join": "^4.0.0",
"url-loader": "^0.5.8",
"webpack": "4.35.0",
"webpack-cli": "^3.3.5"
},
"devDependencies": {
"@babel/preset-stage-2": "^7.0.0",
"@types/jasmine": "^2.8.8",
"@types/material-ui": "^0.21.5",
"@types/react": "^16.4.9",
"@types/react-dom": "^16.0.7",
"awesome-typescript-loader": "^5.2.1",
"babel-eslint": "^10.0.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-plugin-transform-runtime": "^6.15.0",
"eslint": "^6.0.1",
"jasmine": "^3.2.0",
"json-loader": "^0.5.4",
"raw-loader": "^0.5.1",
"source-map-loader": "^0.2.3",
"typedoc": "^0.11.1",
"typescript": "^2.0.0",
"webpack-dev-server": "^3.7.2"
},
"buildOptions": {
"emitEntryPoint": true,
"compile": {
"exclude": [
"node_modules"
]
}
}
}