-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.78 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.78 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
87
88
89
{
"name": "votacidade-app",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "https://github.com/Minhacps/votacidade-app"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-regular-svg-icons": "^5.15.1",
"@fortawesome/free-solid-svg-icons": "^5.15.1",
"@fortawesome/react-fontawesome": "^0.1.11",
"bootstrap": "^4.5.2",
"chance": "^1.1.7",
"classnames": "^2.2.6",
"firebase": "^7.23.0",
"logrocket": "^1.0.13",
"node-sass": "^4.14.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-hook-form": "^6.9.2",
"react-input-mask": "^2.0.4",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.3",
"react-select": "^3.1.0",
"react-social-login-buttons": "^3.1.0",
"react-star-ratings": "^2.3.0",
"reactstrap": "^8.6.0",
"styled-components": "^5.2.0"
},
"devDependencies": {
"@axe-core/react": "^4.0.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.0.4",
"@testing-library/user-event": "^12.1.7",
"babel-plugin-styled-components": "^1.11.1",
"cypress": "^5.3.0",
"docz": "^2.3.1",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-jest-dom": "^3.2.3",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-plugin-testing-library": "^3.9.2",
"husky": "^4.3.0",
"jest-axe": "^4.0.0",
"jest-environment-jsdom-sixteen": "^1.0.3",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"build:prod": "REACT_APP_FIREBASE_ENV=prod REACT_APP_GA_ID='UA-170993659-2' npm run build",
"build:dev": "REACT_APP_FIREBASE_ENV=dev npm run build",
"test": "react-scripts test --env=jest-environment-jsdom-sixteen",
"test:all": "npm run test -- --watchAll=false",
"eject": "react-scripts eject",
"lint": "eslint --ignore-path .gitignore --ext .js .",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier --ignore-path .gitignore --write \"**/*.+(js|json)\"",
"format": "npm run prettier -- --write",
"check-format": "npm run prettier -- --list-different",
"lint-staged": "lint-staged",
"docz:dev": "docz dev --port=9999",
"docz:build": "docz build",
"docz:serve": "docz build && docz serve",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"jest": "jest",
"cypress": "cypress"
},
"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"
]
}
}