-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.25 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.25 KB
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
{
"name": "superdesk-planning",
"version": "3.5.0-dev",
"license": "AGPL-3.0",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/superdesk/superdesk-planning.git"
},
"main": "index.js",
"scripts": {
"ts_lint": "tsc -p . --noEmit && tslint -c tslint.json './**/*.{ts,tsx}' && eslint --parser=@typescript-eslint/parser --ext .js --ext .jsx --ext .ts --ext .tsx scripts spec tasks *.js",
"fix": "eslint client --ext=jsx --ext=js --ext=tsx --ext=ts --ext=spec --fix",
"hint": "eslint client --ext=jsx --ext=js --ext=tsx --ext=ts --ext=spec",
"lint": "eslint client --ext=jsx --ext=js --ext=tsx --ext=ts --ext=spec --quiet",
"test": "KARMA_REPORTER=$npm_config_reporter TEST_FILE_PATTERN=$npm_config_file karma start karma.conf.js --log-level error --display-error-details --single-run",
"karma": "karma start karma.conf.js",
"debug_unit_tests": "karma start karma.conf.js --browsers=Chrome"
},
"author": "Edouard Richard",
"dependencies": {
"@sourcefabric/common": "0.0.69",
"@sourcefabric/draft-js": "^0.11.5",
"date-fns": "^4.1.0",
"dompurify": "^3.2.4",
"immer": "^10.1.1",
"moment": "^2.29.4",
"moment-timezone": "^0.5.41",
"nominatim-browser": "~2.0.2",
"react-bootstrap": "0.32.1",
"react-debounce-input": "3.3.0",
"react-draggable": "^3.3.2",
"react-geolookup": "github:superdesk/react-geolookup",
"react-moment-proptypes": "^1.7.0",
"react-portal": "~4.1.3",
"react-sortable-hoc": "2.0.0",
"reselect": "~3.0.1",
"rrule": "~2.2.9",
"whatwg-fetch": "~2.0.4"
},
"devDependencies": {
"@types/jasmine": "^3.10.18",
"@types/lodash": "^4.17.0",
"@types/react": "16.8.23",
"@types/react-dom": "16.8.0",
"@types/sinon": "^9.0.4",
"@typescript-eslint/parser": "5.57.0",
"angular-mocks": "1.6.9",
"btoa": "^1.1.2",
"cheerio": "1.0.0-rc.10",
"csstype": "2.6.17",
"enzyme": "~3.11.0",
"enzyme-adapter-react-16": "^1.15.8",
"eslint": "6.6.0",
"eslint-plugin-react": "7.16.0",
"jasmine": "^2.99.0",
"jasmine-core": "~2.99.0",
"jasmine-reporters": "^2.5.2",
"karma": "^6.4.2",
"karma-chrome-launcher": "2.2.0",
"karma-cli": "^2.0.0",
"karma-jasmine": "^1.1.1",
"karma-junit-reporter": "^1.1.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-verbose-reporter": "0.0.6",
"karma-webpack": "^5.0.0",
"react-test-renderer": "16.2.0",
"redux": "^4.2.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.4.2",
"simulant": "^0.2.2",
"sinon": "^4.5.0",
"style-loader": "^2.0.0",
"superdesk-code-style": "1.5.0",
"superdesk-core": "github:superdesk/superdesk-client-core#develop",
"superdesk-ui-framework": "6.1.3",
"ts-loader": "^8.4.0",
"ts-node": "~7.0.1",
"tslint": "5.11.0",
"typescript-eslint-parser": "^18.0.0"
},
"peerDependencies": {
"classnames": "^2.2.5",
"lodash": "^4.17.19",
"moment": "^2.29.4",
"moment-timezone": "^0.5.41",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"redux": "^4.2.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"superdesk-ui-framework": "*",
"typescript": "*"
},
"overrides": {
"sass": "^1.94.2"
},
"volta": {
"node": "22.22.0"
}
}