-
Notifications
You must be signed in to change notification settings - Fork 173
/
package.json
91 lines (91 loc) · 3.21 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
{
"name": "loris",
"version": "1.0.0",
"description": "Note that the README in LORIS assumes that LORIS is being run on Ubuntu.",
"directories": {
"doc": "docs",
"test": "test"
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.10.5",
"@babel/runtime": "^7.10.5",
"@fortawesome/fontawesome-free": "^5.11.2",
"copy-webpack-plugin": "^11.0.0",
"dompurify": "^2.5.4",
"jstat": "^1.9.5",
"jszip": "^3.10.1",
"papaparse": "^5.3.0",
"prop-types": "^15.7.2",
"react": "^18.2.0",
"react-addons-create-fragment": "^15.6.2",
"react-dom": "^18.2.0",
"react-markdown": "^5.0.2",
"react-select": "^5.7.0",
"style-loader": "^1.1.3",
"swagger-ui-dist": "^4.1.3",
"sweetalert2": "^8.18.6"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.11.0",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-transform-modules-commonjs": "^7.24.1",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.6.3",
"@types/c3": "^0.7.8",
"@types/d3": "^7.4.0",
"@types/node": "^20.12.7",
"@types/papaparse": "^5.3.11",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/react-redux": "7.1.16",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"alex": ">=11.0.0",
"babel-loader": "^8.0.5",
"c3": "^0.7.20",
"css-loader": "^6.8.1",
"d3": "^5.16.0",
"eslint": "^7.17.0",
"eslint-config-google": "0.9.1",
"eslint-plugin-jsdoc": "^39.6.4",
"eslint-plugin-no-jquery": "^2.6.0",
"eslint-plugin-react": "^7.16.0",
"eslint-webpack-plugin": "2.1.0",
"style-loader": "^1.1.3",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^8.3.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"webpack": "^5.94.0",
"webpack-cli": "^4.10.0"
},
"scripts": {
"lint:js": "./test/run-js-linter.sh",
"lintfix:js": "./test/run-js-linter.sh --fix",
"lint:php": "./test/run-php-linter.sh",
"lintfix:php": "./test/run-php-linter.sh --fix",
"tests:static": "make checkstatic",
"lint:shell": "./test/run-shell-linter.sh",
"tests:unit": "./test/dockerized-unit-tests.sh",
"tests:unit:debug": "DEBUG=true ./test/dockerized-unit-tests.sh",
"tests:integration": "./test/dockerized-integration-tests.sh",
"tests:integration:debug": "DEBUG=true ./test/dockerized-integration-tests.sh",
"compile": "webpack --node-env=development",
"build": "webpack --node-env=production",
"watch": "webpack --watch --progress --node-env=development",
"postinstall": "node npm-postinstall.js"
},
"repository": {
"type": "git",
"url": "https://github.com/aces/Loris.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/aces/Loris/issues"
},
"homepage": "https://github.com/aces/Loris"
}