forked from bpetetot/conference-hall-beta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.28 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
{
"name": "conference-hall",
"version": "0.41.0",
"private": true,
"bugs": "https://github.com/bpetetot/conference-hall/issues",
"repository": "github:bpetetot/conference-hall",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test:emulator": "firebase emulators:exec --only firestore 'jest --roots config --env=./config/tests/custom.js'",
"lint": "eslint --ext js,jsx src",
"changelog": "npx gitmoji-changelog@latest"
},
"dependencies": {
"@k-ramel/react": "3.0.1",
"classnames": "2.3.2",
"date-fns": "2.29.3",
"dompurify": "3.0.1",
"final-form": "4.20.9",
"final-form-arrays": "3.1.0",
"firebase": "9.17.2",
"font-awesome": "4.7.0",
"history": "^5.3.0",
"hoc-react-loader": "6.3.0",
"immutadot": "1.0.0",
"intl-messageformat": "10.3.1",
"k-ramel": "3.0.1",
"lodash": "4.17.21",
"luxon": "3.3.0",
"marked": "4.2.12",
"normalize.css": "8.0.1",
"popper.js": "1.16.1",
"prop-types": "15.8.1",
"randomcolor": "0.6.2",
"react": "18.2.0",
"react-datepicker": "4.10.0",
"react-dom": "18.2.0",
"react-final-form": "6.5.9",
"react-final-form-arrays": "3.1.4",
"react-places-autocomplete": "7.3.0",
"react-router-dom": "6.0.0-beta.0",
"react-sizes": "2.0.0",
"redux": "4.2.1",
"uuid": "9.0.0",
"validator": "13.9.0"
},
"devDependencies": {
"@firebase/testing": "0.20.11",
"@testing-library/react-hooks": "8.0.1",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.7",
"enzyme-to-json": "3.6.2",
"firebase-tools": "11.24.1",
"prettier": "2.8.4",
"react-is": "18.2.0",
"react-scripts": "5.0.1",
"react-test-renderer": "18.2.0",
"redux-devtools-extension": "2.13.9"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"snapshotSerializers": [
"<rootDir>/node_modules/enzyme-to-json/serializer"
]
}
}