-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
128 lines (128 loc) · 4.31 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
126
127
128
{
"name": "waterthetrees",
"author": "Team 'Water the Trees' (waterthetrees.com)",
"license": "CC-BY-NC-4.0",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=18.0.0"
},
"browserslist": [
">1%",
"last 4 versions",
"Firefox ESR",
"not ie < 9"
],
"stylelint": {
"extends": "stylelint-config-standard-scss"
},
"dependencies": {
"@auth0/auth0-react": "^1.9.0",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.4.2",
"@mui/material": "^5.4.2",
"clsx": "^1.1.1",
"compression": "^1.7.4",
"date-fns": "^2.28.0",
"express": "^4.18.2",
"mapbox-gl": "^2.9.1",
"morgan": "^1.10.0",
"react": "^18.2.0",
"react-csv": "^2.2.2",
"react-csv-importer": "^0.8.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^3.1.4",
"react-hook-form": "^7.43.9",
"react-query": "^3.34.15",
"react-router": "^6.10.0",
"react-router-dom": "^6.2.1",
"use-debounce": "^7.0.1",
"winston": "^3.6.0"
},
"devDependencies": {
"@babel/core": "^7.17.4",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@emotion/jest": "^11.10.5",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
"@testing-library/jest-dom": "^5.16.5",
"@storybook/testing-library": "^0.1.0",
"@testing-library/react": "^14.0.0",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@testing-library/user-event": "^14.4.3",
"babel-jest": "^29.4.1",
"babel-loader": "^8.2.3",
"babel-plugin-direct-import": "^1.0.0",
"babel-plugin-styled-components": "^2.1.1",
"copy-webpack-plugin": "^9.1.0",
"css-loader": "^6.6.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"html-webpack-plugin": "^5.5.1",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"mini-css-extract-plugin": "^2.5.3",
"open-cli": "^7.0.1",
"postcss": "^8.4.6",
"postcss-scss": "^4.0.3",
"prettier": "^2.6.2",
"react-refresh": "^0.14.0",
"sass": "^1.49.7",
"sass-loader": "^13.2.2",
"source-map-loader": "^4.0.1",
"speed-measure-webpack-plugin": "^1.5.0",
"@storybook/react": "^7.0.4",
"style-loader": "^3.3.1",
"stylelint": "^14.13.0",
"stylelint-config-standard": "^28.0.0",
"stylelint-config-standard-scss": "^2.0.1",
"webpack": "^5.76.3",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.10.0",
"webpack-config-utils": "^2.3.1",
"webpack-dev-server": "^4.13.2"
},
"scripts": {
"postinstall": "npm run build:data",
"lint": "npm run lint:js || npm run lint:css",
"lint:css": "stylelint \"client/src/**/*.scss\"",
"lint:js": "eslint --ignore-path .gitignore --ext .js,.jsx,.ts,.tsx .",
"lint:fix": "npm run lint:fix:js || npm run lint:fix:css",
"lint:fix:js": "npm run lint:js -- --fix",
"lint:fix:css": "npm run lint:css -- --fix",
"build": "npm run build:data && webpack --env production",
"build:data": "node data/build.js",
"build:analyze": "npm run build -- --env analyze --progress profile",
"build:dev": "npm run build:data && webpack --env development",
"docker": "docker-compose up",
"watch": "webpack --watch --env development",
"start": "node server/index.js localhost",
"start:docker": "npm run watch & npm run start:nodemon",
"start:nodemon": "nodemon server/index.js localserver",
"start:dev": "webpack serve --env development",
"test": "jest",
"test:coverage": "jest --coverage && open-cli coverage/lcov-report/index.html",
"test:watch": "jest --watch",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"optionalDependencies": {
"@storybook/addon-essentials": "^7.0.4",
"@storybook/addon-interactions": "^7.0.4",
"@storybook/addon-links": "^7.0.11",
"@storybook/blocks": "^7.0.4",
"@storybook/react-webpack5": "^7.0.4",
"eslint-plugin-storybook": "^0.6.11",
"storybook": "^7.0.11",
"@storybook/addon-a11y": "^7.0.6"
}
}