-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.52 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": "classification-app",
"version": "0.0.2",
"homepage": ".",
"private": true,
"devDependencies": {
"@storybook/react": "^5.0.0",
"custom-react-scripts": "^0.2.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"prettier": "^1.16.1"
},
"dependencies": {
"@turf/bbox-polygon": "^6.0.1",
"@turf/helpers": "^6.1.4",
"axios": "^0.16.1",
"dotenv": "^6.2.0",
"file-saver": "^1.3.3",
"font-awesome": "^4.7.0",
"jszip": "^3.1.3",
"leaflet": "^1.0.2",
"literallycanvas": "^0.4.14",
"lodash": "^4.17.4",
"md5": "^2.2.1",
"mobx": "^3.0.0",
"mobx-react": "^4.1.2",
"mobx-react-devtools": "^4.2.11",
"moment": "^2.24.0",
"proj4": "^2.3.17",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-markdown": "^4.0.8",
"react-popout": "^0.6.0",
"semantic-ui-css": "^2.2.14",
"semantic-ui-react": "^0.74.0",
"styled-components": "^2.1.0",
"wellknown": "^0.5.0"
},
"scripts": {
"start": "react-scripts start",
"build": "node -r dotenv/config ./node_modules/.bin/react-scripts build dotenv_config_path=config/${BUILD_ENV}.env ",
"build:testing": "BUILD_ENV=testing npm run build",
"build:staging": "BUILD_ENV=staging npm run build",
"build:production": "BUILD_ENV=production npm run build",
"prettier": "prettier --write \"src/**/*.js\"",
"test": "react-scripts test --env=jsdom",
"lint": "eslint --ext .js src/",
"storybook": "start-storybook -p 9001 -c .storybook"
}
}