This repository has been archived by the owner on Jul 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
83 lines (83 loc) · 2.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
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
{
"name": "q2view",
"version": "0.0.0",
"description": "View QIIME 2 Artifacts on the web!",
"main": "index.js",
"scripts": {
"lint": "eslint app/ config/ --ext .js,.jsx --config config/eslint.yaml",
"test": "npm run lint",
"start": "webpack-dev-server --config config/webpack.dev.config.js --host localhost --port 4242 --inline --hot",
"build": "webpack --config config/webpack.prod.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qiime2/q2view.git"
},
"author": "QIIME 2 development team",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/qiime2/q2view/issues"
},
"homepage": "https://github.com/qiime2/q2view#README.md",
"dependencies": {
"babel-polyfill": "^6.16.0",
"bootstrap": "^3.3.7",
"cytoscape": "^2.7.10",
"extract-text-webpack-plugin": "^1.0.1",
"handlebars": "^4.0.5",
"handlebars-loader": "^1.4.0",
"html-webpack-plugin": "^2.22.0",
"i": "^0.3.5",
"js-yaml": "^3.7.0",
"jszip": "^3.1.2",
"lodash": "^4.16.4",
"node-uuid": "^1.4.7",
"query-string": "^4.2.3",
"react": "^15.3.2",
"react-bootstrap": "^0.30.5",
"react-dom": "^15.3.2",
"react-dropzone": "^3.13.2",
"react-github-fork-ribbon": "^0.5.0",
"react-json-tree": "^0.10.0",
"react-redux": "^4.4.5",
"react-router": "^3.0.0",
"react-router-redux": "^4.0.6",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0",
"serviceworker-webpack-plugin": "^0.1.5",
"static-site-generator-webpack-plugin": "^3.1.0",
"webpack": "^1.13.2"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"css-loader": "^0.25.0",
"eslint": "^7.24.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"file-loader": "^0.9.0",
"html-minify-loader": "^1.1.0",
"i": "^0.3.5",
"stylelint": "^7.3.1",
"stylelint-config-standard": "^13.0.2",
"url-loader": "^0.5.7",
"webpack-dev-server": "^1.16.1"
},
"babel": {
"presets": [
"es2015",
"react"
],
"plugins": [
"transform-object-rest-spread"
]
},
"private": true
}