-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.52 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
{
"name": "visu-front",
"version": "1.2.23",
"private": true,
"dependencies": {
"@blueprintjs/core": "^3.30.1",
"@blueprintjs/datetime": "^3.7.2",
"@blueprintjs/icons": "^3.3.0",
"@sentry/browser": "^6.17.5",
"@sentry/tracing": "^6.17.5",
"@terralego/core": "^1.29.0",
"@turf/bbox": "^6.0.1",
"@turf/center": "^6.0.1",
"bodybuilder": "^2.2.16",
"classnames": "^2.2.6",
"debounce": "^1.2.0",
"elasticsearch": "^15.4.1",
"final-form": "^4.18.7",
"html-to-react": "~1.4.8",
"i18next": "^19.7.0",
"i18next-browser-languagedetector": "^3.0.3",
"i18next-xhr-backend": "^3.1.2",
"memoize-one": "^5.0.4",
"memoizee": "^0.4.14",
"node-sass": "^4.10.0",
"normalize.css": "^8.0.1",
"nunjucks": "^3.2.0",
"pivotql-compiler-elasticsearch": "^0.2.0",
"pivotql-compiler-mapboxgl": "^0.1.0",
"pivotql-parser-expression": "^0.2.0",
"prop-types": "^15.7.2",
"qs": "^6.8.0",
"react": "^16.9.0",
"react-ctx-connect": "^1.0.2",
"react-dom": "^16.9.0",
"react-fast-compare": "^2.0.4",
"react-final-form": "^6.3.5",
"react-helmet": "^5.2.1",
"react-i18next": "^11.7.2",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^2.1.8",
"resize-observer-polyfill": "^1.5.1",
"xlsx": "^0.14.5"
},
"devDependencies": {
"cypress": "^4.7.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.3",
"eslint-config-makina": "~0.11.0",
"react-test-renderer": "^16.9.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build && cp _headers.dist ./build/_headers",
"postbuild": "echo $npm_package_version > build/build.txt && git describe >> build/build.txt && date -R >> build/build.txt",
"version": "git changelog -n -t $npm_package_version && git add CHANGELOG.md",
"test": "react-scripts test",
"lint": "eslint src",
"coverage": "npm test -- --coverage",
"eject": "react-scripts eject",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"eslintConfig": {
"extends": "react-app"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!src/App.js",
"!src/config/i18n.js",
"!src/**/index.js"
],
"coverageThreshold": {
"global": {
"branches": 0,
"functions": 0,
"lines": 0,
"statements": 0
}
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}