forked from equinor/webviz-subsurface-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.83 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
{
"name": "webviz_subsurface_components",
"description": "Custom Dash components for use in Webviz",
"repository": {
"type": "git",
"url": "git://github.com/equinor/webviz-subsurface-components.git"
},
"bugs": {
"url": "https://github.com/equinor/webviz-subsurface-components/issues"
},
"homepage": "https://github.com/equinor/webviz-subsurface-components",
"main": "build/index.js",
"scripts": {
"start": "webpack-dev-server --mode development --devtool inline-source-map --entry ./src/demo/index.js --open",
"postinstall": "cp ./package.json webviz_subsurface_components/package.json",
"build:js": "webpack --mode production",
"build:js-dev": "webpack --mode development",
"build:js-demo": "webpack --mode production --entry ./src/demo/index.js",
"build:py_and_r": "dash-generate-components ./src/lib/components webviz_subsurface_components -p package-info.json --r-prefix '' --ignore .*.js$",
"build": "npm run build:js && npm run build:js-dev && npm run build:py_and_r",
"format": "eslint --fix *.js *json 'src/**/*.+(ts|tsx|js|jsx|json|css)'",
"linting": "eslint *.js *.json 'src/**/*.+(ts|tsx|js|jsx|json|css)'"
},
"author": "R&T Equinor <[email protected]>",
"license": "LGPL",
"dependencies": {
"@material-ui/core": "^4.3.3",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"d3": "^5.11.0",
"leaflet": "^1.6.0",
"leaflet-draw": "^1.0.4",
"ramda": "^0.25.0",
"react-leaflet": "^2.4.0",
"react-leaflet-draw": "^0.19.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@typescript-eslint/eslint-plugin": "^2.32.0",
"@typescript-eslint/parser": "^2.32.0",
"babel-loader": "^8.1.0",
"copyfiles": "^2.0.0",
"css-loader": "^2.1.1",
"eslint": "^7.0.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"json-schema": "^0.2.5",
"mini-css-extract-plugin": "^0.8.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"prettier": "^1.18.2",
"raw-loader": "^3.1.0",
"react": "^16.9.0",
"react-docgen": "^2.20.1",
"react-dom": "^16.9.0",
"source-map-loader": "^0.2.4",
"typescript": "^3.8.3",
"url-loader": "^2.1.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.11.0"
},
"engines": {
"node": ">=12.14.0",
"npm": ">=6.14.6"
}
}