This repository has been archived by the owner on Dec 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
96 lines (96 loc) · 3.25 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
87
88
89
90
91
92
93
94
95
96
{
"name": "q2studio",
"version": "2022.8",
"description": "A graphical user interface for QIIME 2.",
"author": "QIIME 2 Development Team",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git://github.com/qiime2/q2studio.git"
},
"scripts": {
"lint:css": "stylelint 'app/**/*.css' --config config/stylelint.yaml",
"lint:js": "eslint app/ config/ --ext .js,.jsx --config config/eslint.yaml",
"lint": "npm run lint:js && npm run lint:css",
"pretest": "npm run lint --silent",
"test": "xvfb-maybe electron-mocha --renderer --compilers js:babel-core/register --require ./test/test_helper.js --recursive",
"build:render": "webpack --config config/webpack.prod.config.js",
"build:main": "webpack --config config/webpack.main.config.js",
"build": "npm run build:main && npm run build:render",
"start": "cross-env NODE_ENV=production electron -r babel-register build/main.js",
"dev:render": "webpack-dev-server --config config/webpack.dev.config.js --host localhost --port 4242 --inline --hot",
"dev:main": "webpack --config config/webpack.main.config.js",
"dev:start": "cross-env NODE_ENV=development electron -r babel-register build/main.js",
"dev": "npm run dev:main && concurrently --kill-others \"npm run dev:render\" \"npm run dev:start\""
},
"dependencies": {
"autoprefixer": "^6.7.2",
"bootstrap-css-only": "^3.3.6",
"crypto-js": "^3.1.6",
"electron": "^1.4.15",
"extract-text-webpack-plugin": "^1.0.1",
"highlight.js": "^9.4.0",
"html-webpack-plugin": "^2.28.0",
"json-loader": "^0.5.4",
"lodash": "^4.17.4",
"moment": "^2.17.1",
"rc-collapse": "^1.6.3",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"react-markdown": "^2.4.2",
"react-redux": "^4.4.1",
"react-router": "^2.4.1",
"react-router-redux": "^4.0.2",
"react-select-plus": "^1.0.0-rc.5",
"redux": "^3.5.2",
"redux-devtools": "^3.3.2",
"redux-devtools-dock-monitor": "^1.1.1",
"redux-devtools-log-monitor": "^1.2.0",
"redux-electron-store": "^0.3.11",
"redux-thunk": "^2.0.1",
"webpack": "^1.14.0",
"which": "^1.2.10"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"chai": "^3.5.0",
"chai-things": "^0.2.0",
"concurrently": "^2.1.0",
"cross-env": "^1.0.8",
"css-loader": "^0.23.1",
"deep-freeze": "0.0.1",
"electron-mocha": "^2.2.0",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"file-loader": "^0.8.5",
"mocha": "^2.4.5",
"postcss-loader": "^0.8.2",
"pre-commit": "^1.1.3",
"react-hot-loader": "^1.3.0",
"redux-logger": "^2.6.1",
"style-loader": "^0.13.1",
"stylelint": "^5.2.1",
"stylelint-config-standard": "^4.0.1",
"url-loader": "^0.5.7",
"webpack-dev-server": "^1.14.1",
"xvfb-maybe": "^0.1.3"
},
"babel": {
"presets": [
"es2015",
"react"
],
"plugins": [
"transform-object-rest-spread"
]
},
"private": true
}