-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 1.97 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
{
"name": "@intermine/bluegenes-human-tissue-expression-visualizer",
"version": "2.0.1",
"main": "src/index.js",
"description": "",
"homepage": "http://www.intermine.org",
"files": [
"/dist",
"/config.json",
"/preview.png"
],
"repository": {
"type": "git",
"url": "https://github.com/intermine/bluegenes-human-tissue-expression-visualizer"
},
"scripts": {
"test": "jest",
"build": "./node_modules/.bin/webpack",
"dev": "node dev/serve.js",
"webpack:dev:build": "./node_modules/.bin/webpack --mode=development",
"webpack:watch": "./node_modules/.bin/webpack --watch",
"less": "lessc src/style.less dist/style.css --clean-css",
"lint": "./node_modules/.bin/eslint src/*.js -c .eslintrc --ext js",
"lint:fix": "./node_modules/.bin/eslint src/*.js -c .eslintrc --ext js --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"*.js": [
"./node_modules/.bin/eslint -c .eslintrc",
"git add"
]
},
"keywords": [
"bluegenes-intermine-tool"
],
"author": "",
"license": "MIT",
"dependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-dropdown-select": "^4.4.2",
"react-select": "^3.1.0",
"react-vega": "^7.4.3"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@types/jest": "^24.0.13",
"babel-loader": "^8.0.6",
"chokidar": "^3.0.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"express": "^4.16.3",
"husky": "^2.2.0",
"imjs": "^4.0.0",
"jest": "^24.8.0",
"less": "^3.8.1",
"less-plugin-clean-css": "^1.5.1",
"lint-staged": "^8.1.6",
"prettier": "^1.17.0",
"socket.io": "^2.4.0",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0"
}
}