-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.15 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"homepage": "https://ArturW1998.github.io/Binance",
"name": "binance",
"version": "0.1.0",
"private": true,
"dependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-scripts": "3.0.0",
"react-redux": "^7.0.2",
"react-router-dom": "^4.4.0-beta.8",
"redux": "^4.0.1",
"redux-logger": "^3.0.6"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"test:watch": "npm test -- --watchAll --verbose",
"test:coverage": "npm test -- --bail --coverage --watchAll",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"lint:styles": "stylelint --fix --syntax css src/**/*.css",
"lint": "eslint --ext .js --ext .jsx --fix ./src",
"format": "prettier \"src/**/*.{js,jsx,yml,yaml,ts,tsx,md,graphql,mdx}\" --write",
"format:styles": "prettier \"src/**/*.{scss,sass,less,css}\" --parser css --write",
"precommit": "lint-staged",
"test:e2e": "start-server-and-test serve http://localhost:3000 test:e2e:run",
"test:e2e:run": "cypress run --record --key bc4b8a8f-d7c5-4d58-a5d0-b1a0118f42a8",
"test:e2e:dev": "cypress open",
"validate": "npm run lint && npm run lint:styles && npm run test:coverage && npm run build && npm run test:e2e"
},
"devDependencies": {
"@babel/parser": "^7.7.5",
"@testing-library/cypress": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^2.11.0",
"@typescript-eslint/parser": "^2.11.0",
"bootstrap": "^4.4.1",
"classnames": "^2.2.6",
"cypress": "^4.3.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^5.16.0",
"eslint-config-cypress": "^0.28.0",
"eslint-config-prettier": "^6.7.0",
"eslint-config-react-app": "^5.1.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-flowtype": "^3.13.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jest": "^23.1.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^1.7.0",
"eslint-plugin-standard": "^4.0.1",
"gh-pages": "^2.2.0",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"prop-types": "^15.6.2",
"redux-localstorage-simple": "^2.1.6",
"redux-mock-store": "^1.5.4",
"serve": "^11.3.0",
"start-server-and-test": "^1.10.11",
"stylelint": "^12.0.0",
"stylelint-config-prettier": "^8.0.0",
"stylelint-config-primer": "^9.0.0",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-recommended-scss": "^4.1.0",
"stylelint-config-standard": "^19.0.0",
"stylelint-order": "^3.1.1",
"stylelint-prettier": "^1.1.2"
},
"eslintConfig": {
"extends": "react-app"
},
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"browserslist": [
"> 1%",
"last 3 version"
],
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!src/registerServiceWorker.js"
]
}
}