This repository has been archived by the owner on Aug 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
98 lines (98 loc) · 2.73 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
{
"name": "freight",
"version": "0.0.0",
"description": "**This project is a work in progress and is not yet intended to be production ready.**",
"directories": {
"test": "tests"
},
"scripts": {
"test": "jest",
"build": "webpack --mode production",
"start:ui": "webpack-dev-server",
"start:api": "bin/web --addr localhost:5002 --debug",
"start": "run-p start:api start:ui"
},
"repository": {
"type": "git",
"url": "https://github.com/getsentry/freight.git"
},
"author": "David Cramer <dcramer@gmail.com> (https://github.com/dcramer)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/getsentry/freight/issues"
},
"homepage": "https://github.com/getsentry/freight",
"dependencies": {
"@babel/core": "^7.18.10",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.18.9",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@sentry/react": "^7.10.0",
"@sentry/tracing": "^7.10.0",
"@types/marked": "^4.0.6",
"@types/react": "17",
"ansi-to-react": "^6.1.6",
"babel-loader": "^8.2.5",
"bootstrap": "~3.3.0",
"classnames": "^2.3.1",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"date-fns": "^2.14.0",
"html-webpack-plugin": "^5.5.0",
"less": "^4.1.3",
"less-loader": "^11.0.0",
"marked": "^4.0.19",
"mini-css-extract-plugin": "^2.6.1",
"prop-types": "^15.7.2",
"query-string": "^7.1.1",
"react": "17",
"react-dom": "17",
"react-router-dom": "6",
"style-loader": "^3.3.1",
"typescript": "^4.7.4",
"webpack": "5.74.0",
"webpack-cli": "^4.10.0"
},
"jest": {
"fakeTimers": {
"enableGlobally": true
},
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"setupFiles": [
"<rootDir>/static/tests/setup.js"
],
"testEnvironment": "jsdom",
"modulePaths": [
"<rootDir>/static/tests"
],
"moduleNameMapper": {
"^app/(.*)$": "<rootDir>/static/$1"
}
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/runtime": "^7.4.3",
"@wojtekmaj/enzyme-adapter-react-17": "0.6.7",
"babel-eslint": "^10.1.0",
"babel-jest": "^28.1.3",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.2",
"eslint": "^8.21.0",
"eslint-config-sentry-app": "^1.96.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"jest-fetch-mock": "^3.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"webpack-dev-server": "^4.10.0"
},
"volta": {
"node": "16.13.1",
"yarn": "1.22.5"
}
}