-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
110 lines (110 loc) · 3.03 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
106
107
108
109
110
{
"name": "seismic-explorer",
"version": "3.0.0",
"description": "",
"repository": {
"type": "git",
"url": "git+https://github.com/concord-consortium/seismic-explorer.git"
},
"scripts": {
"build": "webpack",
"build-production": "PRODUCTION=true webpack",
"start": "webpack-dev-server",
"lint": "standard --fix",
"lint:test": "standard",
"test": "jest",
"test:watch": "jest --watch",
"test:cypress": "cypress run --reporter cypress-image-snapshot/reporter",
"test:cypress:basic": "cypress run --spec cypress/integration/basic/**/*",
"test:cypress:snapshots": "cypress run --spec cypress/integration/gpu-dependant/**/* --env failOnSnapshotDiff=false --reporter cypress-image-snapshot/reporter",
"test:cypress:open": "cypress open --env failOnSnapshotDiff=false",
"test:cypress:chrome": "cypress run --headless --browser chrome"
},
"standard": {
"ignore": [
"js/data"
],
"globals": [
"jest",
"describe",
"context",
"test",
"it",
"specify",
"expect",
"before",
"beforeAll",
"beforeEach",
"afterEach",
"cy",
"Cypress"
]
},
"keywords": [
"seismic",
"eruptions",
"leaflet"
],
"author": "Pior Janik <[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/concord-consortium/seismic-explorer/issues"
},
"homepage": "https://github.com/concord-consortium/seismic-explorer#readme",
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@svgr/webpack": "^4.3.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"babel-loader": "^8.0.5",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"cypress": "^13.6.3",
"cypress-image-snapshot": "^3.1.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.10.0",
"html-webpack-plugin": "^5.5.3",
"imports-loader": "^4.0.1",
"jest": "^24.1.0",
"json-loader": "^0.5.7",
"less": "^4.1.3",
"less-loader": "^11.1.3",
"raw-loader": "^4.0.2",
"standard": "^12.0.1",
"style-loader": "^3.3.3",
"wait-on": "^7.0.1",
"webpack": "^5.88.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"@material-ui/core": "^4.1.2",
"@material-ui/icons": "^4.2.1",
"font-awesome": "^4.7.0",
"iframe-phone": "^1.1.3",
"immutable": "^3.8.2",
"jquery": "^3.5.1",
"leaflet": "^1.5.1",
"leaflet-plugins": "^3.0.3",
"leaflet-rotatedmarker": "^0.2.0",
"prop-types": "^15.7.2",
"rainbowvis.js": "^1.0.1",
"rc-slider": "^8.6.6",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"react-leaflet": "^2.4.0",
"react-modal": "^3.8.1",
"react-redux": "^6.0.1",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"rollbar": "^2.5.2",
"screenfull": "^4.0.1",
"shutterbug": "^1.0.0",
"three": "^0.102.0",
"tween.js": "^16.6.0"
}
}