-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
84 lines (84 loc) · 2.41 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
{
"name": "Viewpoints",
"version": "1.0.0",
"description": "A Graphical tool for viewing high dimensionality data",
"author": "Matt Ferraro <[email protected]>",
"license": "MIT",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --mode development --config ./config/webpack.config.dev.js",
"build": "cross-env NODE_ENV=production webpack --mode production --config ./config/webpack.config.prod.js",
"lint": "eslint ./src",
"lint:fix": "eslint --fix ./src",
"precommit": "lint-staged",
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf node_modules/ && rm -rf dist/"
},
"repository": {
"type": "git",
"url": "[email protected]:planetlabs/viewpoints.git"
},
"bugs": {
"url": "https://github.com/planetlabs/viewpoints/issues",
"email": "[email protected]"
},
"browserlist": [
"> 1%",
"ie > 9"
],
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.4",
"babel-plugin-emotion": "^9.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"cross-env": "^5.1.4",
"css-loader": "^0.28.11",
"dotenv-webpack": "^1.5.5",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-prettier": "^2.6.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^0.14.3",
"less": "^3.0.4",
"less-loader": "^4.1.0",
"lint-staged": "^7.0.4",
"prettier": "^1.11.1",
"style-loader": "^0.21.0",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.14",
"webpack-dev-server": "^3.1.3",
"webpack-merge": "^4.1.2"
},
"engines": {
"node": ">=9.3.0"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css,md}": [
"eslint --fix src",
"git add"
]
},
"dependencies": {
"emotion": "^9.1.3",
"lodash.chunk": "^4.2.0",
"lodash.difference": "^4.5.0",
"lodash.flatten": "^4.4.0",
"normalize-css": "^2.3.1",
"papaparse": "^4.4.0",
"platform": "^1.3.5",
"prop-types": "^15.6.1",
"proptypes": "^1.1.0",
"react": "^16.3.2",
"react-bootstrap": "^0.32.1",
"react-bootstrap-typeahead": "^3.1.3",
"react-dom": "^16.3.2",
"react-emotion": "^9.1.3",
"react-hot-loader": "^4.1.3",
"react-progress-bar-plus": "^1.3.1"
}
}