-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.37 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
{
"name": "edugie-Taste",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.6.0",
"@mui/material": "^5.6.0",
"@reacticons/ionicons": "^6.0.2",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.5.0",
"@types/axios": "^0.14.0",
"autoprefixer": "^10.4.2",
"axios": "^0.26.1",
"concat": "^1.0.3",
"ionicons": "^6.0.1",
"npm-run-all": "^4.1.5",
"postcss-cli": "^9.1.0",
"react": "^17.0.2",
"react-bootstrap": "^2.2.1",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"react-modal": "^3.14.4",
"react-router-dom": "^6.2.2",
"react-toastify": "^8.2.0",
"styled-components": "^5.3.3",
"sweetalert2": "^11.4.9",
"web-vitals": "^2.1.4"
},
"scripts": {
"watch:sass": "node-sass ./src/styles/sass/main.scss ./src/styles/css/style.css -w",
"devserver": "live-server",
"start": "react-scripts start npm-run-all --parallel devserver watch:sass",
"compile:sass": "node-sass ./src/styles/sass/main.scss ./src/styles/css/style.comp.css",
"concat:css": "concat -o ./src/styles/css/style.concat.css ./src/styles/css/icon-font.css ./src/styles/css/style.comp.css",
"prefix:css": "postcss --use autoprefixer -b 'last 10 versions' ./src/styles/css/style.concat.css -o ./src/styles/css/style.prefix.css",
"compress:css": "node-sass ./src/styles/css/style.prefix.css ./src/styles/css/style.css --output-style compressed",
"build:css": "npm-run-all compile:sass concat:css prefix:css compress:css ",
"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"
]
},
"proxy": "https://edugie-kitchen.herokuapp.com/",
"devDependencies": {
"@types/jquery": "^3.5.14",
"@types/react": "^17.0.41",
"@types/react-dom": "^17.0.11",
"@types/styled-components": "^5.1.24",
"react-scripts": "5.0.0"
},
"browser": {
"fs": false,
"path": false,
"os": false
}
}