-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.09 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.09 KB
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
{
"name": "safepet",
"version": "1.1.0",
"author": {
"name": "Sebastián Tobon, Rodrigo Acosta, Sebastián Londoño Valencia"
},
"homepage": "https://SebasProgrammer2021.github.io/onlineshop-safepet-front",
"description": "Software 3 subject final project",
"license": "MIT",
"dependencies": {
"@fortawesome/fontawesome-free": "5.15.3",
"@popperjs/core": "2.9.1",
"@tailwindcss/forms": "0.2.1",
"autoprefixer": "10.2.5",
"axios": "^0.24.0",
"chart.js": "2.9.4",
"gh-pages": "^3.2.3",
"gulp": "4.0.2",
"gulp-append-prepend": "1.0.8",
"postcss": "8.2.8",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-router": "5.2.0",
"react-router-dom": "5.2.0",
"react-scripts": "4.0.3",
"tailwindcss": "2.0.4"
},
"scripts": {
"deploy" : "npm run build&&gh-pages -d build",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test:cov": "react-scripts test --coverage --watchAll",
"eject": "react-scripts eject",
"install:clean": "rm -rf node_modules/ && rm -rf package-lock.json && npm install && npm run build:tailwind && npm start",
"build:tailwind": "tailwind build src/assets/styles/index.css -o src/assets/styles/tailwind.css"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"optionalDependencies": {
"typescript": "4.2.3"
},
"devDependencies": {
"@testing-library/react": "^12.0.0",
"jest": "^26.6.0"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!<rootDir>/node_modules/",
"!<rootDir>/src/index.js",
"!<rootDir>/tailwind.config.js"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
},
"coverageReporters": [
"html",
"text",
"lcov"
]
}
}