forked from catalyst-offgrid/catalyst-aip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.46 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
{
"name": "catalyst-aip",
"version": "0.0.0",
"description": "A business intelligence tool for enterprises looking to serve the last mile gap in electrification.",
"main": "src/index.js",
"scripts": {
"clean": "rm -rf dist .cache",
"develop": "parcel -p 8000 src/index.html --open",
"build": "NODE_ENV=production parcel build src/index.html",
"serve": "npx http-server -p 8000 dist",
"deploy": "surge ./dist",
"lint": "eslint --ignore-path .gitignore \"**/*.{js,jsx}\"",
"lint:fix": "eslint --ignore-path .gitignore \"**/*.{js,jsx}\" --fix",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"test": "jest",
"tdd": "jest --watch",
"cy:open": "cypress open",
"cy:run": "cypress run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/developmentseed/catalyst-aip.git"
},
"bugs": {
"url": "https://github.com/developmentseed/catalyst-aip/issues"
},
"homepage": "",
"author": "Alice Rühl <alice@developmentseed.org>",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"axe-core": "^4.0.2",
"babel-eslint": "^10.1.0",
"cypress": "^5.5.0",
"cypress-axe": "0.8.1",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-inclusive-language": "^1.2.1",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"gh-pages": "^3.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.2",
"jest-styled-components": "^7.0.3",
"parcel-bundler": "^1.12.4",
"prettier": "^2.1.2"
},
"dependencies": {
"@reach/accordion": "^0.11.2",
"@reach/disclosure": "^0.11.2",
"@reach/portal": "^0.11.2",
"@reach/tooltip": "^0.11.2",
"d3-fetch": "^2.0.0",
"mapbox-gl": "^1.12.0",
"numeral": "^2.0.6",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-input-range": "^1.3.0",
"react-router-dom": "^5.2.0",
"react-test-renderer": "^17.0.1",
"styled-components": "^5.2.1"
},
"browserslist": {
"production": [
"last 3 chrome versions",
"last 3 firefox versions",
"last 3 safari versions"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}