-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
136 lines (136 loc) · 4.04 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "pluto-mediabrowser",
"version": "1.0.0",
"description": "GNM's basic media browsing interface for VS",
"main": "index.js",
"scripts": {
"test": "jest --verbose",
"test-ci": "jest --ci --testResultsProcessor=\"jest-junit\"",
"dev": "webpack --mode development",
"compile": "webpack --mode production",
"snyk-protect": "snyk protect",
"lint": "prettier --check app __tests__",
"lint:fix": "prettier --write app __tests__",
"update-interfaces": "ts-interface-builder app/vidispine/search/FacetResponse.ts app/vidispine/item/VidispineItem.ts app/vidispine/field-group/CustomData.ts app/vidispine/field-group/VidispineFieldGroup.ts app/vidispine/shape/VidispineShape.ts"
},
"jest": {
"moduleFileExtensions": [
"jsx",
"js",
"tsx",
"ts",
"json"
],
"verbose": true,
"moduleNameMapper": {
"\\.(css|less|svg)$": "identity-obj-proxy",
"axios": "axios/dist/node/axios.cjs"
},
"testResultsProcessor": "jest-junit",
"testEnvironment": "jsdom",
"setupFiles": [
"./jestSetup.jsx"
],
"transform": {
"^.+\\.[jt]sx?$": "ts-jest"
}
},
"author": "Andy Gallagher <[email protected]>",
"devDependencies": {
"@svgr/webpack": "^5.4.0",
"@types/codemirror": "^5.60.5",
"@types/enzyme": "^3.10.5",
"@types/jest": "^26.0.7",
"@types/jsonwebtoken": "^8.5.0",
"@types/lodash.omit": "^4.5.6",
"@types/react": "^16.9.56",
"@types/react-dom": "^16.9.9",
"@types/react-helmet": "^6.1.1",
"@types/react-router-dom": "^5.1.7",
"@types/sinon": "^9.0.4",
"@types/xml-formatter": "^2.1.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"expect": "^24.9.0",
"husky": ">=4",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"jest-fetch-mock": "^3.0.1",
"jest-junit": "^13.0.0",
"moxios": "^0.4.0",
"prettier": "^2.0.5",
"react-test-renderer": "^16.12.0",
"sass": "^1.26.9",
"sass-loader": "^8.0.2",
"sinon": "^2.3.7",
"source-map-loader": "^1.0.0",
"ts-interface-builder": "^0.2.2",
"ts-jest": "^26.5.4",
"ts-loader": "^7.0.5",
"typescript": "^4.2.3",
"yarn-audit-fix": "^9.3.1"
},
"dependencies": {
"@date-io/core": "^1.3.6",
"@date-io/date-fns": "^1.3.6",
"@fortawesome/fontawesome-svg-core": "^1.2.26",
"@fortawesome/free-brands-svg-icons": "^5.12.0",
"@fortawesome/free-regular-svg-icons": "^5.12.0",
"@fortawesome/free-solid-svg-icons": "^5.12.0",
"@fortawesome/react-fontawesome": "^0.1.8",
"@guardian/pluto-headers": "v2.0.4",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.58",
"@material-ui/pickers": "^3.3.10",
"@types/react-window": "^1.8.5",
"ajv": "^6.12.3",
"axios": "^1.7.4",
"buffer": "^6.0.3",
"codemirror": "^5.65.2",
"cross-storage": "^1.0.0",
"crypto-browserify": "^3.12.0",
"css-loader": "^5.2.3",
"date-fns": "^2.22.1",
"elliptic": "^6.5.7",
"identity-obj-proxy": "^3.0.0",
"ini": "^1.3.6",
"jose": "^4.15.5",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"lodash.omit": "^4.5.0",
"material-ui-chip-input": "^1.1.0",
"process": "^0.11.10",
"query-string": "^6.13.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^6.1.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-select": "^3.1.0",
"react-window": "^1.8.6",
"recharts": "^2.1.7",
"stream-browserify": "^3.0.0",
"style-loader": "^2.0.0",
"ts-interface-checker": "^0.1.11",
"typescript-loader": "^1.1.3",
"url-loader": "^4.1.0",
"util": "^0.12.3",
"webpack": "^5.94.0",
"webpack-cli": "^4.6.0",
"xml-formatter": "^2.6.1",
"y18n": "^4.0.1",
"yarn": "^1.22.13"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,md}": "prettier --write"
},
"license": "ISC",
"resolutions": {
"ajv": "^6.12.3",
"elliptic": "^6.5.7",
"ini": "^1.3.6",
"lodash": "^4.17.20",
"y18n": "^4.0.1"
}
}