-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
75 lines (75 loc) · 2.14 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
{
"name": "osoc-webapp",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-free": "^6.5.2",
"express": "^4.18.2",
"foundation-sites": "^6.5.3",
"husky": "^8.0.2",
"isomorphic-fetch": "^3.0.0",
"leaflet": "^1.9.3",
"lint-staged": "^13.1.0",
"motion-ui": "^2.0.4",
"next": "^12.2.0",
"next-images": "^1.8.4",
"prop-types": "^15.7.1",
"react": "^16.14.0",
"react-app-polyfill": "^3.0.0",
"react-dom": "^16.8.6",
"react-leaflet": "^2.7.0",
"react-leaflet-universal": "^2.2.1",
"react-transition-group": "^4.4.2",
"sass": "^1.57.1",
"slugify": "^1.6.5",
"swr": "^1.3.0",
"unfetch": "^4.1.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "npm run build && next export && npm run post-export",
"post-export": "cp _redirects ./.next/_redirects",
"start": "cross-env NODE_ENV=production next start",
"analyze": "cross-env BUNDLE_ANALYZE=both next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build",
"prepare": "husky install",
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\""
},
"eslintConfig": {
"extends": "react-app"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [],
"**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --single-quote --write"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@netlify/plugin-nextjs": "^4.29.2",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.3",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.15.7",
"eslint": "5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^2.50.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.31.11",
"husky": "^8.0.2",
"prettier": "^2.8.1",
"react-test-renderer": "^16.14.0"
},
"packageManager": "[email protected]"
}