-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 2.97 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
97
98
99
100
101
102
103
104
105
{
"name": "rpg-sound-manager-v2",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/jest": "^24.0.0",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"cookie-storage": "^6.0.0",
"cypress-react-unit-test": "^4.11.2",
"firebase": "^7.17.1",
"history": "^5.0.0",
"lodash.first": "^3.0.0",
"lodash.get": "^4.4.2",
"lodash.isempty": "^4.4.0",
"lodash.last": "^3.0.0",
"node-sass": "^4.14.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-query": "^3.16.0",
"react-redux": "^7.2.1",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.1",
"redux": "^4.0.5",
"redux-saga": "^1.1.3",
"smart-routes": "^1.0.3",
"typed-redux-saga": "^1.2.0",
"typesafe-actions": "^5.1.0",
"typescript": "~3.7.2",
"uuid": "^8.3.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"cypress": "./node_modules/.bin/cypress open",
"eject": "react-scripts eject"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npx branch-name-lint ./branch-name-lint.config.json",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.(ts|tsx)": [
"eslint --fix"
],
"*.scss": [
"npx stylelint '**/*.scss' --fix"
]
},
"browserslist": {
"production": [
"since 2010"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@bahmutov/add-typescript-to-cypress": "^2.1.2",
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@types/history": "^4.7.7",
"@types/lodash.first": "^3.0.6",
"@types/lodash.get": "^4.4.6",
"@types/lodash.isempty": "^4.4.6",
"@types/lodash.last": "^3.0.6",
"@types/react-query": "^1.1.2",
"@types/react-redux": "^7.1.9",
"@types/react-router-dom": "^5.1.5",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"cross-env": "^7.0.2",
"cypress": "^4.12.1",
"cz-conventional-changelog": "3.2.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-react-app": "^5.2.1",
"eslint-import-resolver-typescript": "^2.2.0",
"eslint-plugin-es": "^3.0.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.5",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"stylelint": "^13.6.1",
"stylelint-config-sass-guidelines": "^7.0.0",
"stylelint-config-standard": "^20.0.0"
}
}