-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
128 lines (128 loc) · 4.2 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
{
"name": "iregulon",
"type": "module",
"version": "0.0.1",
"description": "WIP",
"repository": {
"type": "git",
"url": "https://github.com/cytoscape/iregulon-webapp.git"
},
"bugs": {
"url": "https://github.com/cytoscape/iregulon-webapp/issues"
},
"homepage": "https://github.com/cytoscape/iregulon-webapp",
"scripts": {
"start": "node -r dotenv-defaults/config ./src/server/index.js",
"inspect": "node inspect --inspect-brk -r dotenv-defaults/config ./src/server/index.js",
"bundle-profile": "cross-env NODE_ENV=production PROFILE=true webpack --config ./webpack.config.cjs --profile",
"lint:js": "eslint ./src",
"fix:js": "eslint ./src --fix",
"bundle:js": "webpack --config ./webpack.config.cjs",
"watch:js": "webpack --config ./webpack.config.cjs --watch",
"watch:sync-bundle": "livereload \"build, src/views\" -w 1000",
"watch:sync-server": "nodemon -r dotenv-defaults/config src/server/index.js",
"lint:css": "stylelint src/**/*.css",
"fix:css": "stylelint src/**/*.css --fix",
"bundle:css": "postcss src/styles/index.css -o build/main.css",
"watch:css": "postcss --verbose --watch src/styles/index.css -o build/main.css",
"bundle:css-deps": "postcss src/styles/deps.css -o build/deps.css",
"watch:css-deps": "postcss --watch src/styles/deps.css -o build/deps.css",
"bundle": "run-s bundle:*",
"build": "run-p bundle",
"build-prod": "cross-env NODE_ENV=production run-s build",
"clean": "rimraf build/*",
"lint": "run-s lint:*",
"fix": "run-s fix:*",
"watch": "run-p watch:*",
"test:mocha": "cross-env TESTING=true mocha -r dotenv-defaults/config --exit",
"test:bundle": "run-s bundle",
"test": "run-s test:mocha test:bundle lint"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.332.0",
"@mui/icons-material": "^5.16.4",
"@mui/lab": "^5.0.0-alpha.172",
"@mui/material": "^5.16.4",
"@mui/styled-engine-sc": "^5.14.12",
"@mui/styles": "^5.16.4",
"@react-hook/resize-observer": "^1.2.6",
"@sentry/browser": "^7.107.0",
"@sentry/integrations": "7.107.0",
"@sentry/node": "^7.107.0",
"@sentry/tracing": "^7.107.0",
"body-parser": "^1.19.0",
"chroma-js": "^2.4.2",
"classnames": "^2.2.6",
"clsx": "^2.1.1",
"cookie-parser": "^1.4.5",
"cytoscape": "^3.30.1",
"cytoscape-automove": "^1.10.3",
"cytoscape-cise": "^2.0.0",
"cytoscape-cola": "^2.5.1",
"cytoscape-euler": "^1.2.3",
"cytoscape-fcose": "^2.2.0",
"cytoscape-layers": "^2.4.1",
"cytoscape-pdf-export": "0.0.2",
"dedent": "^1.5.1",
"dotenv": "^6.2.0",
"dotenv-defaults": "^5.0.0",
"eventemitter3": "^3.1.2",
"express": "^4.17.1",
"file-saver": "^2.0.5",
"fready": "^1.0.0",
"jszip": "^3.10.1",
"localforage": "^1.10.0",
"lodash": "^4.17.21",
"minisearch": "^5.0.0",
"mongodb": "^4.5.0",
"morgan": "^1.10.0",
"mousetrap": "^1.6.5",
"node-fetch": "^2.6.7",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-archer": "^4.3.0",
"react-dom": "^17.0.2",
"react-query": "^3.39.2",
"react-router-dom": "^5.3.3",
"react-virtuoso": "^3.1.1",
"styled-components": "^5.3.11",
"uuid": "^3.4.0",
"uuid-mongodb": "^2.5.1",
"winston": "^3.2.1",
"xlsx": "^0.17.2",
"zustand": "^4.5.5"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.1",
"@types/react-router-dom": "^5.3.3",
"babel-loader": "^8.1.0",
"babel-plugin-import": "^1.13.8",
"chai": "^4.2.0",
"cross-env": "^5.2.1",
"cssnano": "^5.1.11",
"dotenv-webpack": "^1.7.0",
"eslint": "^8.4.1",
"eslint-plugin-react": "^7.21.2",
"livereload": "^0.9.1",
"mocha": "^10.0.0",
"nodemon": "^2.0.16",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.14",
"postcss-cli": "^9.1.0",
"postcss-import": "^14.1.0",
"postcss-preset-env": "^7.7.1",
"postcss-url": "^10.1.3",
"rimraf": "^2.7.1",
"stylelint": "^14.9.0",
"stylelint-config-standard": "^26.0.0",
"webpack": "^4.42.0",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-cli": "^3.3.11"
},
"engines": {
"node": "16"
},
"browserslist": "safari 13"
}