-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 896 Bytes
/
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
{
"name": "sentry-ts-repro",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "run-s task:compile task:minify task:copy",
"clean": "del-cli build minified sentry",
"task:minify": "babel -d minified --presets minify -s true build",
"task:compile": "tsc -p tsconfig.production.json",
"task:copy": "cpy package.json minified/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@sentry/cli": "^1.45.0",
"@types/node": "^12.0.10",
"babel-preset-minify": "^0.5.0",
"cpy-cli": "^2.0.0",
"del-cli": "^2.0.0",
"npm-run-all": "^4.1.5",
"source-map": "^0.7.3",
"typescript": "^3.5.2"
},
"dependencies": {
"@sentry/integrations": "^5.4.2",
"@sentry/node": "^5.4.3"
}
}