-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.29 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
{
"name": "refugia-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"devDependencies": {
"concurrently": "4.1.0",
"react-scripts": "3.4.1",
"sass": "^1.34.1"
},
"dependencies": {
"bootstrap": "^5.0.1",
"d3": "latest",
"geotiff": "^1.0.4",
"lodash": "latest",
"mapbox-gl": "^1.13.1",
"mapbox-gl-compare": "^0.4.0",
"plotty": "^0.4.6",
"proj4": "^2.7.2",
"react": "^16.6.3",
"react-bootstrap": "next",
"react-dom": "^16.6.3",
"react-router-dom": "^5.0.0",
"prop-types": "^15.7.2"
},
"scripts": {
"dev": "react-scripts start",
"start": "set PORT=3002 && react-scripts start",
"watch": "concurrently --names \"webpack, stylus\" --prefix name \"npm run start\" \"npm run styles:watch\"",
"build": "react-scripts build",
"eject": "react-scripts eject",
"styles": "stylus -u autoprefixer-stylus ./src/css/style.styl -o ./src/css/style.css",
"now-build": "npm run build && mv build dist",
"styles:watch": "npm run styles -- -w"
},
"author": "",
"license": "ISC",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}