-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 2.56 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
{
"name": "dbjr",
"engines": {
"node": "^10.0.0"
},
"scripts": {
"build": "webpack",
"test": "eslint --ext js,jsx assets/front/react/src && jest",
"jest": "jest"
},
"jest": {
"verbose": true,
"moduleFileExtensions": [
"js",
"jsx"
],
"setupFiles": [
"./assets/front/react/tests/setupJest.js"
],
"setupFilesAfterEnv": [
"./assets/front/react/tests/setupEnzyme.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"browserslist": [
"last 2 version",
"> 1%",
"not dead"
],
"dependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/plugin-transform-react-jsx": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@visionappscz/eslint-config-visionapps": "^1.2.0",
"autoprefixer": "^9.8.5",
"babel-jest": "^26.1.0",
"babel-loader": "^8.1.0",
"bootstrap-colorpicker": "^2.5.3",
"bootstrap-toggle": "^2.2.2",
"bootstrap-ui": "^3.1.0",
"core-js": "^3.6.5",
"cssnano": "^4.1.10",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.5.0",
"eslint": "^7.5.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-react-hooks": "^4.0.8",
"grunt": "^1.2.1",
"grunt-browser-sync": "^2.2.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-concat": "^1.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-imagemin": "^4.0.0",
"grunt-contrib-less": "^2.0.0",
"grunt-contrib-uglify": "^5.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-po2json-simple": "^0.1.8",
"grunt-postcss": "^0.9.0",
"grunt-processhtml": "^0.4.2",
"grunt-svgmin": "^6.0.0",
"grunt-text-replace": "^0.4.0",
"grunt-uncss": "^0.9.1",
"jest": "^26.1.0",
"jquery": "^3.5.1",
"jquery-ui": "^1.12.1",
"json-loader": "^0.5.7",
"jsx-loader": "^0.13.2",
"leaflet": "^1.6.0",
"leaflet.markercluster": "^1.4.1",
"load-grunt-config": "^3.0.1",
"loader-utils": "^2.0.0",
"moment": "^2.27.0",
"prop-types": "^15.7.2",
"pwstrength-bootstrap": "^3.0.9",
"react": "^16.13.1",
"react-addons-test-utils": "15.6.2",
"react-dom": "^16.13.1",
"sinon": "^9.0.2",
"time-grunt": "^2.0.0",
"uuid": "^8.3.0",
"webpack": "^4.44.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"whatwg-fetch": "^3.2.0"
}
}