-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.21 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.21 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
{
"name": "exhanger",
"version": "0.1.0",
"private": true,
"dependencies": {
"@loadable/component": "^5.13.1",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.4.0",
"@testing-library/user-event": "^8.0.3",
"axios": "^0.19.0",
"axios-auth-refresh": "^1.0.7",
"classnames": "^2.2.6",
"collect.js": "^4.16.6",
"env-cmd": "^10.0.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"react": "^16.9.0",
"react-dom": "^16.13.1",
"react-helmet": "^5.2.1",
"react-hook-form": "^3.23.18",
"react-hook-form-input": "^1.0.14",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.1",
"react-transition-group": "^4.4.1"
},
"scripts": {
"build:style": "postcss src/styles/index.css -o src/styles/main.css",
"build:staging": "env-cmd -f .env.staging npm run build",
"start": "npm run build:style && react-scripts start",
"build": "npm run build:style && react-scripts build",
"test": "env-cmd -f ./.env.test react-scripts test",
"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": {
"@fullhuman/postcss-purgecss": "^2.1.0",
"@types/jest": "^24.9.1",
"@types/node": "^14.0.13",
"@types/react": "^16.9.38",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.5",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"autoprefixer": "^9.6.1",
"cypress": "^4.10.0",
"husky": "^3.0.8",
"locales": "^0.0.2",
"postcss-cli": "^6.1.3",
"postcss-import": "^12.0.1",
"prettier": "^2.0.5",
"start-server-and-test": "^1.11.0",
"tailwindcss": "^1.4.6",
"typescript": "^3.9.5"
}
}