forked from mytardis/mytardis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.68 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
{
"name": "mytardis",
"version": "4.2.0",
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/mytardis/mytardis.git"
},
"dependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.14.1",
"@babel/preset-react": "^7.10.4",
"@emotion/core": "^10.0.27",
"@testing-library/react": "11.2.5",
"angular": "1.8.0",
"angular-resource": "1.8.2",
"babel-loader": "^8.2.2",
"blueimp-file-upload": "^9.31.0",
"bootstrap": "^4.6.0",
"bootstrap-3-typeahead": "^4.0.2",
"clean-webpack-plugin": "^1.0.1",
"clipboard": "^2.0.8",
"core-js": "^3.6.5",
"css-loader": "^5.2.4",
"expose-loader": "^0.7.5",
"file-loader": "^4.2.0",
"file-saver": "^2.0.5",
"filesize": "^6.3.0",
"font-awesome": "^4.7.0",
"glob": "^7.1.4",
"html-webpack-plugin": "^4.4.1",
"imports-loader": "^0.8.0",
"jquery": "^3.6.0",
"jquery-ui": "^1.12.1",
"jquery-ui-dist": "^1.12.1",
"js-cookie": "^2.2.1",
"less": "^3.13.1",
"less-loader": "^7.3.0",
"mini-css-extract-plugin": "^0.11.2",
"minimatch": "^3.0.2",
"moment": "^2.29.0",
"pluralize": "^8.0.0",
"prop-types": "^15.7.2",
"query-string": "^6.13.1",
"react": "^16.14.0",
"react-beautiful-dnd": "^13.1.0",
"react-bootstrap": "^1.3.0",
"react-bootstrap-typeahead": "^4.0.0-alpha.10",
"react-datetime": "^2.16.3",
"react-dom": "^16.13.0",
"react-spinners": "^0.10.6",
"react-tag-autocomplete": "^5.13.1",
"react-treebeard": "v4.2.4-beta.0",
"regenerator-runtime": "^0.13.3",
"sprintf-js": "^1.1.2",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^4.2.3",
"underscore": "^1.12.1",
"underscore.string": "^3.3.5",
"url-loader": "^4.1.0",
"webpack": "^4.46.0",
"webpack-bundle-tracker": "^0.4.3",
"webpack-cli": "^3.3.12"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"bootlint": "^1.1.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-angular": "^0.5.0",
"eslint-plugin-angular": "^4.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.23.2",
"grunt": "^1.4.0",
"grunt-cli": "^1.3.2",
"grunt-contrib-qunit": "^4.0.0",
"grunt-webpack": "^3.1.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.4.2",
"jest-fetch-mock": "^3.0.3",
"jquery-mockjax": "^2.6.0",
"js-yaml": "^4.1.0",
"jscpd": "^3.3.19",
"qunit": "^2.15.0",
"react-test-renderer": "^16.10.2"
},
"scripts": {
"eslint.jquery": "eslint -c .eslintrc --ext .js assets/js/tardis_portal js_tests/tardis_portal/ tardis/apps/sftp/static/js/sftp/sftp.js tardis/apps/openid_migration/static/js/openid_migration/migrate_accounts.js",
"eslint.angular": "eslint -c .eslintrc.angular assets/js/tardis_portal/facility_view/facility_view.js",
"eslint.react": "eslint -c .eslintrc.react --ext .jsx assets/js/apps/",
"test-build": "webpack --config test-webpack.config.js --progress --colors --mode production",
"pretest": "npm run eslint.jquery && npm run eslint.angular && npm run eslint.react && npm run test-build",
"test-react": "jest --collectCoverage=true --testMatch=\"<rootDir>/assets/js/apps/**/__tests__/*.spec.jsx\" --config jest.config.js",
"test": "grunt test --verbose && npm run test-react",
"dev": "webpack --config webpack.config.js --progress --colors --watch --display-error-details --mode development",
"build": "webpack --config webpack.config.js --progress --colors --mode production"
}
}