-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.88 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": "air-monitoring-frontend",
"version": "1.0.0",
"description": "Frontend for the Air Monitoring PWA project.",
"author": "Ali Raiki & Raphaël Dhôte",
"private": true,
"license": "UNLICENSED",
"proxy": "http://localhost:5000",
"repository": {
"type": "git",
"url": "https://gitlab.illuin.tech/3ACentrale/2020-air-monitoring-pwa/air-monitoring-frontend"
},
"scripts": {
"build": "react-scripts build",
"eject": "react-scripts eject",
"eslint": "eslint --fix ./src/**/*.{ts,tsx}",
"eslint:ci": "eslint --format stylish ./src/**/*.{ts,tsx}",
"lint": "npm run eslint && npm run stylelint",
"lockfile-lint": "npx lockfile-lint --path package-lock.json --type npm --validate-https --allowed-hosts npm",
"snyk:auth": "npx snyk auth",
"snyk:monitor": "npx snyk monitor",
"snyk:test": "npx snyk test",
"start": "react-scripts start",
"stylelint": "stylelint --fix ./src/**/*.css",
"stylelint:ci": "stylelint ./src/**/*.css",
"test": "react-scripts test",
"test:ci": "CI=true npm run test"
},
"dependencies": {
"notyf": "3.9.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-scripts": "4.0.3",
"react-test-renderer": "17.0.2",
"web-vitals": "1.1.1"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@emotion/react": "11.1.5",
"@emotion/styled": "11.3.0",
"@material-ui/core": "5.0.0-alpha.30",
"@material-ui/icons": "5.0.0-alpha.28",
"@material-ui/lab": "4.0.0-alpha.57",
"@react-google-maps/api": "2.1.1",
"@testing-library/jest-dom": "5.11.10",
"@testing-library/react": "11.2.6",
"@testing-library/react-hooks": "5.1.1",
"@testing-library/user-event": "13.1.2",
"@types/chart.js": "2.9.32",
"@types/enzyme": "3.10.8",
"@types/googlemaps": "3.43.3",
"@types/jest": "26.0.22",
"@types/nock": "11.1.0",
"@types/node": "14.14.37",
"@types/react": "17.0.3",
"@types/react-dom": "17.0.3",
"@types/react-query": "1.1.2",
"@types/react-router-dom": "5.1.7",
"@wojtekmaj/enzyme-adapter-react-17": "0.6.1",
"chart.js": "2.9.4",
"enzyme": "3.11.0",
"eslint": "7.24.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-react": "7.23.2",
"mock-geolocation": "1.0.11",
"nock": "13.0.11",
"prettier": "2.2.1",
"react-chartjs-2": "2.11.1",
"react-cool-onclickoutside": "1.6.1",
"react-query": "3.13.6",
"react-router-dom": "5.2.0",
"stylelint": "13.12.0",
"stylelint-config-standard": "21.0.0",
"typescript": "4.2.4",
"use-places-autocomplete": "1.9.1"
}
}