-
-
Notifications
You must be signed in to change notification settings - Fork 114
/
package.json
66 lines (66 loc) · 2.22 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
{
"name": "SequenceServer",
"description": "BLAST searching made easy!",
"version": "3.1.3",
"homepage": "http://sequenceserver.com",
"repository": "https://github.com/wurmlab/sequenceserver",
"author": {
"name": "Pragmatic Genomics",
"email": "contact@sequenceserver.com"
},
"scripts": {
"watch": "webpack --watch",
"watch-cloud": "webpack --watch --env=pluginsPath='../sequence_server_js_extensions' --env=targetEnv='cloud'",
"test": "jest",
"minify:css": "npx tailwindcss build -i ./public/css/app.css -o ./public/css/app.min.css --minify",
"build": "webpack --mode production && npm run minify:css",
"build-cloud": "webpack --mode production --env=pluginsPath='../sequence_server_js_extensions' --env=targetEnv='cloud' && npm run minify:css"
},
"dependencies": {
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-preset-react-app": "^10.0.1",
"chroma-js": "^2.4.2",
"d3": "^7.9.0",
"jest-circus": "^28.0.3",
"jest-environment-jsdom": "^28.0.2",
"jest-resolve": "^28.0.3",
"jest-watch-typeahead": "^1.1.0",
"jquery": "^3.7.1",
"jsdom": "^19.0.0",
"jstree": "^3.3.8",
"react": "18",
"react-app-polyfill": "^3.0.0",
"react-detect-print": "^0.1.2",
"react-dom": "18",
"tailwindcss": "^3.4.3",
"underscore": "^1.8.3"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/node": "^7.16.8",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.24.6",
"@babel/preset-react": "^7.24.6",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.1.1",
"@testing-library/user-event": "^14.1.1",
"babel-jest": "^28.1.3",
"babel-loader": "^8.2.5",
"clean-css": "^5.3.3",
"clean-css-cli": "^5.6.3",
"eslint": "^6.5.1",
"eslint-plugin-react": "^7.16.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^28.0.1",
"jest-jspm": "^0.1.2",
"jspm": "^3.3.1",
"path": "^0.12.7",
"react-test-renderer": "^18.1.0",
"stylelint": "^16.8.0",
"stylelint-config-standard": "^36.0.1",
"webpack": "^5.72.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.8.1"
}
}