-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.74 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
{
"name": "react-fleet",
"version": "0.0.0",
"description": "Components for using Fleet in our webapps",
"private": true,
"license": "CC0-1.0",
"files": [
"/build"
],
"main": "build/react-fleet.es5.js",
"module": "build/react-fleet.js",
"type": "module",
"types": "build/react-fleet.d.ts",
"sideEffects": false,
"scripts": {
"prebuild": "rimraf build",
"build": "concurrently \"yarn run build:typescript\" \"yarn run build:babel && rollup -c\"",
"build:typescript": "tsc",
"build:babel": "cross-env BABEL_ENV=esm babel src --out-dir build --extensions \".ts,.tsx\"",
"prepare": "yarn run build",
"test": "jest"
},
"jest": {
"snapshotSerializers": [
"@emotion/jest"
],
"testPathIgnorePatterns": [
"<rootDir>/build/",
"<rootDir>/node_modules/",
"<rootDir>/scripts/"
]
},
"dependencies": {
"@babel/plugin-proposal-private-property-in-object": "7.21.0",
"@babel/preset-env": "7.21.4",
"@babel/preset-react": "7.18.6",
"@types/core-js": "^2.5.5",
"@types/string-hash": "^1.1.1",
"core-js": "^2.6.5",
"mockdate": "3.0.5",
"puppeteer": "19.8.5",
"webpack": "5.79.0"
},
"peerDependencies": {
"@babel/runtime": "7.21.0",
"@emotion/core": "10.1.0",
"detect-browser": "3.0.1",
"prop-types": "15.8.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-dropzone": "14.2.3",
"string-hash": "1.1.3"
},
"devDependencies": {
"@babel/cli": "7.21.0",
"@babel/core": "7.21.0",
"@babel/runtime": "7.21.0",
"@emotion/core": "10.1.0",
"@emotion/jest": "11.10.5",
"@percy/storybook": "4.3.5",
"@storybook/addon-a11y": "7.0.6",
"@storybook/addon-actions": "7.0.6",
"@storybook/addon-viewport": "7.0.6",
"@storybook/addons": "7.0.6",
"@types/cheerio": "0.22.31",
"@types/fs-extra": "11.0.1",
"@types/jest": "29.5.1",
"@types/node": "18.15.11",
"@types/node-fetch": "2.6.3",
"@types/react": "18.0.37",
"@types/react-dom": "18.0.11",
"babel-core": "^7.0.0-0",
"babel-plugin-inline-import": "3.0.0",
"babel-plugin-require-context-hook": "1.0.0",
"cheerio": "1.0.0-rc.12",
"concurrently": "8.0.1",
"config-babel": "CityOfBoston/config-babel#main",
"cross-env": "7.0.3",
"detect-browser": "5.3.0",
"fs-extra": "11.1.1",
"jest": "29.5.0",
"jest-emotion": "11.0.0",
"node-fetch": "3.3.1",
"prop-types": "15.8.1",
"raw-loader": "4.0.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-dropzone": "14.2.3",
"rimraf": "5.0.0",
"rollup": "3.20.6",
"string-hash": "^1.1.3",
"ts-node": "10.9.1",
"typescript": "5.0.4"
},
"resolutions": {
"@types/react": "18.0.37",
"@types/react-dom": "18.0.11"
}
}