forked from sentry-tutorials/frontend-monitoring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 797 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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"@sentry/browser": "^6.12.0",
"@sentry/cli": "^1.49.0",
"@sentry/tracing": "^6.12.0",
"history": "^1.17.0",
"material-ui": "^0.18.7",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"react-router": "^1.0.3",
"react-scripts": "1.0.10",
"request": "^2.88.0",
"serve": "^11.3.0"
},
"scripts": {
"predeploy": "npm run build && make setup_release",
"deploy": "serve -s build",
"start": "REACT_APP_RELEASE_VERSION=`sentry-cli releases propose-version` react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"deploy-ghp": "npm run predeploy && gh-pages -d build"
},
"devDependencies": {
"gh-pages": "^1.2.0"
}
}