-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.02 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
{
"name": "@guardian/pluto-headers",
"version": "2.0.4",
"description": "Header components for pluto",
"repository": "git://github.com/guardian/pluto-headers",
"main": "build/index",
"module": "build/index.es.js",
"types": "build/index",
"files": [
"build"
],
"scripts": {
"test": "jest --verbose",
"build": "rm -rf build && rollup -c && mkdir build/static && cp src/static/* build/static/",
"update-interfaces": "ts-interface-builder src/utils/OAuthConfiguration.ts"
},
"author": "",
"license": "ISC",
"jest": {
"testEnvironment": "jsdom",
"moduleFileExtensions": [
"jsx",
"js",
"tsx",
"ts",
"json"
],
"verbose": true,
"moduleNameMapper": {
"\\.svg$": "<rootDir>/__tests__/imagemock.js",
"\\.(css|less)$": "identity-obj-proxy"
},
"resolver": null,
"transform": {
"^.+\\.[jt]sx?$": "ts-jest",
"^.+\\.js$": "ts-jest"
},
"testPathIgnorePatterns": [
"/node_modules/",
"imagemock.js"
],
"transformIgnorePatterns": [
"node_modules/(?!(enzyme-cleanup)/)"
],
"testResultsProcessor": "jest-junit",
"setupFiles": [
"./jestSetup.jsx"
]
},
"peerDependencies": {
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.58",
"axios": "^0.21.2",
"date-fns": "^2.22.1",
"jose": "^4.9.3",
"query-string": "^6.13.1",
"react": "^16.8.0 || ^17.0.0",
"react-dom": "^16.8.0 || ^17.0.0",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.58",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-image": "^2.0.5",
"@rollup/plugin-node-resolve": "^8.4.0",
"@svgr/rollup": "^6.5.1",
"@types/enzyme": "^3.10.12",
"@types/jest": "^26.0.1",
"@types/jsonwebtoken": "^8.5.2",
"@types/moxios": "^0.4.9",
"@types/react": "^16.9.36",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.5",
"@types/sinon": "^9.0.4",
"axios": "^0.21.2",
"date-fns": "^2.22.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"expect": "^24.9.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.1.5",
"jest-cli": "^27.1.5",
"jest-fetch-mock": "^3.0.3",
"jest-junit": "^4.0.0",
"jest-localstorage-mock": "^2.4.3",
"jose": "^4.9.3",
"postcss": "^8.4.18",
"moxios": "^0.4.0",
"object.entries": "^1.1.1",
"prettier": "^2.0.5",
"query-string": "^6.13.1",
"react": "^16.8.0 ",
"react-dom": "^16.8.0",
"react-router-dom": "^5.2.0",
"react-test-renderer": "^16.8.0",
"rollup": "^2.3.4",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"sinon": "^8.0.4",
"ts-interface-builder": "^0.2.2",
"ts-interface-checker": "^0.1.13",
"ts-jest": "^27.1.5",
"ts-loader": "^7.0.5",
"typescript": "^4.7.4"
}
}