-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.57 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
{
"name": "signature-builder",
"version": "1.0.4",
"private": true,
"homepage": "https://sigbuild.herokuapp.com",
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@fontsource/league-spartan": "^4.5.0",
"@fontsource/roboto": "^4.5.1",
"@mui/icons-material": "^5.2.5",
"@mui/material": "^5.2.8",
"clipboard": "^2.0.8",
"concurrently": "^7.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.6",
"react-scripts": "^5.0.0",
"redux": "^4.1.2",
"sass": "^1.48.0",
"svgo": "^2.8.0"
},
"resolutions": {
"mini-css-extract-plugin": "2.4.5"
},
"scripts": {
"predeploy": "yarn run build",
"deploy": "gh-pages -d build",
"deploy-production": "yarn deploy",
"deploy-development": "heroku git:remote -a sigbuild && git push heroku development:main",
"start": "react-scripts start",
"watch": "concurrently \"react-scripts start\" \"sass --watch src/sass:src/css --no-source-map\" ",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@redux-devtools/extension": "^3.1.0",
"gh-pages": "^3.2.3"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
}
}