generated from developmentseed/project-seed
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
92 lines (92 loc) · 2.7 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
85
86
87
88
89
90
91
92
{
"name": "ds-annotate",
"version": "0.1.0",
"private": true,
"homepage": "http://devseed.com/ds-annotate/",
"dependencies": {
"@emotion/react": "^11.10.6",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^13.5.0",
"@turf/bezier-spline": "^6.5.0",
"@turf/helpers": "^6.5.0",
"@turf/simplify": "^6.5.0",
"@turf/turf": "^6.5.0",
"@types/geojson": "^7946.0.10",
"history": "^5.3.0",
"lodash": "^4.17.21",
"ol": "^6.13.0",
"ol-magic-wand": "^1.0.5",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-notifications": "^1.7.4",
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.1",
"react-spinners": "^0.13.8",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "react-scripts start",
"clean": "rimraf build/",
"build": "react-scripts build",
"eject": "react-scripts eject",
"deploy": "yarn clean && PUBLIC_URL=/ds-annotate REACT_APP_ENV=production yarn build && gh-pages -d build",
"deploy_staging": "yarn clean && PUBLIC_URL=/ REACT_APP_ENV=staging yarn build && aws s3 rm s3://ds-annotate-staging/ --recursive && aws s3 sync build/ s3://ds-annotate-staging/",
"lint": "npx eslint . && yarn prettier",
"prettier": "yarn clean && prettier --write 'src/**/*.js'",
"test": "yarn lint && react-scripts test --env=jsdom --watchAll=false --testMatch **/src/**/*.test.js"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.1",
"@babel/node": "^7.10.5",
"@babel/plugin-transform-modules-commonjs": "^7.13.0",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.12.13",
"@testing-library/react-hooks": "^8.0.1",
"autoprefixer": "^10.4.7",
"babel-jest": "^29.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-jest": "^26.6.2",
"cross-env": "^7.0.3",
"eslint": "8.0.0",
"eslint-config-react-app": "7.0.1",
"gh-pages": "^4.0.0",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"jest-watch-typeahead": "0.6.5",
"postcss": "^8.4.14",
"prettier": "^2.6.2",
"rimraf": "^5.0.1",
"tailwindcss": "^3.1.5",
"ts-jest": "^29.0.3"
},
"jest": {
"coverageReporters": [
"html"
],
"transformIgnorePatterns": [
"node_modules/@uiw/react-md-editor/"
]
}
}