forked from cioos-siooc/metadata-entry-form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 3.85 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "hakai-metadata-entry-form",
"homepage": "https://hakaiinstitute.github.io/hakai-metadata-entry-form/",
"version": "1.1.0",
"private": true,
"jest": {
"moduleNameMapper": {
"^axios$": "axios/dist/node/axios.cjs"
}
},
"dependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@citation-js/date": "^0.4.4",
"@date-io/date-fns": "^1.3.13",
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@material-ui/pickers": "^3.2.10",
"@sentry/react": "^8.20.0",
"@sentry/tracing": "^7.114.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/user-event": "^7.1.2",
"array-move": "^3.0.1",
"axios": "^1.6.7",
"buffer": "^6.0.3",
"citation-js": "^0.5.0",
"clsx": "^1.1.1",
"crypto-browserify": "^3.12.0",
"date-fns": "^2.0.0-beta.5",
"file-saver": "^2.0.5",
"firebase": "^10.8.0",
"firebase-admin": "^11.5.0",
"firebase-functions": "^4.2.1",
"https-browserify": "^1.0.0",
"javascript-time-ago": "^2.3.4",
"just-debounce-it": "^1.5.0",
"leaflet": "^1.6.0",
"leaflet-draw": "^1.0.4",
"nunjucks": "^3.2.3",
"path-browserify": "^1.0.1",
"querystring-es3": "^0.2.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-leaflet": "^2.7.0",
"react-leaflet-draw": "0.19.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^5.0.1",
"react-smooth-dnd": "^0.11.1",
"react-time-ago": "^6.2.2",
"regenerator-runtime": "^0.13.7",
"request": "^2.88.2",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"url": "^0.11.3",
"use-debounce": "^8.0.4",
"util": "^0.12.5",
"uuid": "^8.3.0",
"validator": "^13.6.0",
"xml-escape": "^1.1.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.3",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"gh-pages": "^3.1.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"react-app-rewired": "^2.2.1",
"react-hot-loader": "^4.12.21"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "TZ=UTC react-app-rewired test",
"eject": "react-app-rewired eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"test:coverage": "npx jest --config=jest.config.js --coverage",
"test:coverFile": "cross-env npx jest --config=jest.config.js --coverage --collectCoverageFrom=src/**/${FILE}.jsx $FILE",
"lint": "eslint . --ext .js,.jsx --ignore-path .gitignore --ignore-pattern 'src/**/__tests__/*.test*' --ignore-pattern 'src/serviceWorker.js' --ignore-pattern firebase-functions",
"lint:fix": "eslint --fix . --ext .js,.jsx --ignore-path .gitignore --ignore-pattern serviceWorker.js",
"format": "prettier --write \"**/*.+(js|jsx|json|css|md)\" --ignore-path .gitignore"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"lint-staged": {
"*.+(js|jsx)": [
"eslint --fix",
"git add"
],
"*.+(json|css|md)": [
"prettier --write",
"git add"
]
}
}
}