-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.68 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.68 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
82
83
84
85
86
{
"name": "openweathermap",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome": "^1.1.8",
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-brands-svg-icons": "^5.14.0",
"@fortawesome/free-regular-svg-icons": "^5.14.0",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/react-fontawesome": "^0.1.11",
"@hookform/resolvers": "^0.1.0",
"@loadable/component": "^5.13.1",
"axios": "^0.19.0",
"collect.js": "^4.16.6",
"date-fns": "^2.16.1",
"env-cmd": "^10.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jsonwebtoken": "^8.5.1",
"mutationobserver-shim": "^0.3.7",
"qs": "^6.9.4",
"react": "^16.9.0",
"react-dom": "^16.13.1",
"react-helmet": "^5.2.1",
"react-hook-form": "^6.5.0",
"react-preloaders": "^3.0.3",
"react-query": "^2.10.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.3",
"yup": "^0.29.3"
},
"scripts": {
"build:style": "postcss src/styles/index.css -o src/styles/main.css",
"start": "npm run build:style && react-scripts start",
"build": "npm run build:style && react-scripts build",
"build:development": "env-cmd -f ./.env.development npm run build:style && react-scripts build",
"test": "react-scripts test",
"test:watch": "npm run test -- --watch",
"eject": "react-scripts eject",
"format": "prettier --config .prettierrc --write src/**/*.js",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"e2e": "cypress open",
"cy:run": "cypress run",
"teste2e": "start-server-and-test start http://localhost:3000 cy:run"
},
"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"
]
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@fullhuman/postcss-purgecss": "^2.1.0",
"@testing-library/react": "^9.4.0",
"@types/jest": "^24.9.1",
"@types/loadable__component": "^5.13.0",
"@types/node": "^14.0.13",
"@types/qs": "^6.9.3",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.5",
"@types/yup": "^0.29.6",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"cypress": "^4.12.1",
"faker": "^4.1.0",
"husky": "^3.0.8",
"postcss-cli": "^7.1.2",
"postcss-import": "^12.0.1",
"prettier": "^2.0.5",
"start-server-and-test": "^1.11.2",
"tailwindcss": "^1.7.3",
"typescript": "^3.9.5"
}
}