-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
74 lines (74 loc) · 2.36 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": "mediathread",
"version": "0.1.0",
"description": "Media annotation tool",
"private": true,
"directories": {
"doc": "docs"
},
"scripts": {
"test": "jest",
"cypress:run": "cypress run",
"cypress:chromerun": "cypress run --headless --browser chrome",
"cypress:chromeopen": "cypress open --browser chrome",
"cypress:chromehead": "cypress run --headed --browser chrome",
"cypress:ffrun": "cypress run --headless --browser firefox",
"cypress:ffopen": "cypress open --browser firefox",
"cypress:ffhead": "cypress run --headed --browser firefox",
"cypress:test": "start-server-and-test 'make integrationserver' http-get://127.0.0.1:8000 cypress:ffhead",
"dev": "webpack --mode development --watch",
"eslint": "eslint media/js/app media/js/src media/js/src/*.jsx media/js/src/**/*.jsx media/js/pdf/*.js *.js",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git://github.com/ccnmtl/mediathread.git"
},
"author": "Columbia University Center for Teaching and Learning",
"license": "GPL-2.0-only",
"bugs": {
"url": "https://github.com/ccnmtl/mediathread/issues"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/eslint-parser": "^7.15.8",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.7.4",
"@babel/runtime": "^7.12.5",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^16.0.0",
"axe-core": "^4.1.4",
"babel-jest": "^29.0.1",
"babel-loader": "^9.0.0",
"cypress": "13.17.0",
"cypress-axe": "^1.5.0",
"eslint": "~9.18.0",
"eslint-plugin-cypress": "^4.0.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-security": "^3.0.1",
"globals": "^15.8.0",
"jest": "^29.0.0",
"jest-environment-jsdom": "29.7.0",
"jsdom": "^25.0.0",
"start-server-and-test": "^2.0.0",
"webpack": "^5.0.0",
"webpack-cli": "^6.0.0"
},
"dependencies": {
"@svgdotjs/svg.js": "^3.1.1",
"file-loader": "^6.2.0",
"get-youtube-id": "^1.0.1",
"lodash": "^4.17.15",
"ol": "8.2.0",
"react": "~18.3.0",
"react-bootstrap": "~2.10.0",
"react-data-table-component": "^7.0.0",
"react-dom": "~18.3.1",
"react-pdf": "^6.2.0",
"react-player": "~2.16.0",
"react-select": "^5.0.0",
"styled-components": "^6.1.11",
"whatwg-fetch": "^3.0.0"
}
}