forked from rahul-tarafdar-synerzip/neo4j-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
158 lines (158 loc) · 5.38 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
{
"name": "neo4j-browser",
"version": "3.2.20",
"description": "Neo4j Browser is the general purpose user interface for working with Neo4j. Query, visualize, administrate and monitor the database.",
"neo4jDesktop": {
"apiVersion": "^1.2.0"
},
"propertiesToCopyToManifest": [
"description",
"homepage",
"neo4jDesktop"
],
"repository": {
"type": "git",
"url": "https://github.com/neo4j/neo4j-browser.git"
},
"keywords": [],
"author": "Neo4j Inc.",
"license": "GPL-3.0",
"homepage": "https://neo4j.com/developer/guide-neo4j-browser/",
"main": "dist/index.html",
"scripts": {
"build": "NODE_ENV=\"production\" webpack --config ./build_scripts/webpack.config.js --progress",
"dev": "jest --watch",
"e2e": "cypress run",
"e2e-local": "CYPRESS_E2E_TEST_ENV=\"local\" cypress run",
"e2e-local-open": "CYPRESS_E2E_TEST_ENV=\"local\" cypress open",
"format": "prettier-eslint 'src/**/!(*.min).js' 'src/**/*.jsx' --write",
"jar": "yarn build && mvn package",
"jest": "jest --coverage",
"lint": "eslint --fix --ext .js --ext .jsx ./",
"precommit": "lint-staged",
"prepare-jar": "node ./scripts/prepare-mvn-package.js",
"prepare-canary": "node ./scripts/prepare-canary.js",
"start": "NODE_ENV=\"development\" webpack-dev-server --colors --config ./build_scripts/webpack.config.js",
"starts": "NODE_ENV=\"development\" webpack-dev-server --https --colors --config ./build_scripts/webpack.config.js",
"start-prod": "NODE_ENV=\"production\" webpack-dev-server --colors --config ./build_scripts/webpack.config.js",
"test": "npm run lint && npm run jest",
"update-licenses": "sh ./scripts/generate_licenses.sh",
"version-pom": "node ./scripts/set-pom-version.js -f ./pom.xml -v $npm_package_version",
"version": "npm run version-pom && git add ./pom.xml",
"wait-on-dev": "wait-on -c ./build_scripts/wait-on-config.js http-get://localhost:8080",
"wait-on-devs": "wait-on -c ./build_scripts/wait-on-config.js https-get://localhost:8080",
"wait-on-neo4j": "wait-on -c ./build_scripts/wait-on-config.js http-get://localhost:7474",
"wait-on-neo4js": "wait-on -c ./build_scripts/wait-on-config.js https-get://localhost:7473"
},
"lint-staged": {
"linters": {
"*.{js,jsx}": [
"prettier-eslint --write",
"git add"
]
}
},
"engines": {
"yarn": "^1.10",
"node": ">=8"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-transform-regenerator": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^7.1.4",
"babel-eslint": "^7.2.3",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"babel-plugin-dynamic-import-node": "^2.2.0",
"babel-plugin-module-resolver": "^2.4.0",
"babel-plugin-styled-components": "^1.8.0",
"babel-plugin-transform-react-jsx": "^6.23.0",
"babel-runtime": "^6.26.0",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.3",
"css-loader": "^1.0.0",
"cypress": "^3.2.0",
"eslint": "^4.6.1",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-jsx": "^4.0.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx": "^0.0.2",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^7.3.0",
"eslint-plugin-standard": "^3.0.1",
"express": "^4.15.4",
"file-loader": "^2.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"husky": "^0.14.3",
"jest": "^24.1.0",
"jest-canvas-mock": "^1.1.0",
"jest-dom": "^1.12.0",
"js2xmlparser": "^3.0.0",
"json-loader": "^0.5.7",
"lint-staged": "^4.1.3",
"mini-css-extract-plugin": "^0.4.4",
"ncp": "^2.0.0",
"nock": "^9.0.14",
"postcss": "^6.0.11",
"postcss-cssnext": "^3.0.2",
"postcss-loader": "^3.0.0",
"precss": "^2.0.0",
"prettier-eslint": "^7.1.0",
"prettier-eslint-cli": "^4.3.0",
"raf": "^3.4.0",
"raw-loader": "^0.5.1",
"react-hot-loader": "^4.3.11",
"react-testing-library": "^6.0.0",
"redux-mock-store": "^1.2.3",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"wait-on": "^3.1.0",
"webpack": "^4.29.6",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.1.9",
"worker-loader": "^2.0.0",
"xml2js": "^0.4.19"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"ascii-data-table": "^2.1.1",
"classnames": "^2.2.5",
"codemirror": "^5.29.0",
"cypher-codemirror": "1.1.5",
"d3": "3",
"deepmerge": "^2.1.1",
"dnd-core": "^2.5.1",
"file-saver": "^1.3.8",
"firebase": "^5.8.3",
"isomorphic-fetch": "^2.2.1",
"jsonic": "^0.3.0",
"neo4j-driver": "^1.7.5",
"react": "^16.8.1",
"react-addons-pure-render-mixin": "^15.0.2",
"react-dnd": "^2.5.1",
"react-dnd-html5-backend": "^2.5.1",
"react-dom": "^16.8.1",
"react-icons": "^2.2.1",
"react-redux": "^5.0.7",
"react-suber": "1.0.4",
"react-svg-inline": "^2.1.1",
"react-timeago": "^4.1.9",
"redux": "^3.7.2",
"redux-observable": "^0.16.0",
"rxjs": "^5.4.2",
"save-as": "^0.1.7",
"semver": "^5.5.0",
"styled-components": "^4.0.0",
"stylis": "^3.4.10",
"suber": "^5.0.1",
"swipe-js-iso": "^2.0.4",
"url-parse": "^1.1.9",
"uuid": "^3.0.1"
}
}