forked from dptools/dpdash
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
138 lines (138 loc) · 4.54 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
129
130
131
132
133
134
135
136
137
138
{
"name": "po",
"version": "2.1.0",
"private": true,
"scripts": {
"build": "NODE_ENV=production webpack",
"build:watch": "webpack --watch",
"transpile": "npx babel ./server --out-dir dist && cp -r ./server/mailer/templates ./dist/mailer/templates",
"dev": "NODE_ENV=development concurrently \"npm run serve:watch\" \"npm run build:watch\"",
"start": "NODE_ENV=production start dist/bin/www.js",
"server": "nodemon --exec babel-node server/bin/www.js",
"serve:watch": "nodemon -r dotenv/config --exec babel-node server/bin/www.js --watch \"./server\" dotenv_config_path=./.env.development",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"node": "DEBUG=* node ./dist/bin/www.js",
"test": "concurrently \"npm run test:ui\" \"npm run test:server\"",
"test:ui": "jest --env=jsdom --config=jestUIConfig.js views/",
"test:server": "jest --config=jestServerConfig.js server/",
"test:cdk": "jest --config=jestCdkConfig.js cdk_lib/",
"bootstrap": "cdk bootstrap",
"deploy": "cdk deploy"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/node_modules/"
]
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-transform-runtime",
"@babel/plugin-transform-react-constant-elements",
"@babel/plugin-transform-react-inline-elements"
]
},
"dependencies": {
"@aws-sdk/client-ses": "^3.437.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@hookform/resolvers": "^3.3.2",
"@mui/icons-material": "^5.14.15",
"@mui/material": "^5.14.15",
"@mui/x-date-pickers": "^6.18.4",
"aws-cdk-lib": "2.100.0",
"body-parser": "^1.18.3",
"classnames": "^2.2.6",
"colorbrewer": "^1.3.0",
"connect-mongo": "^5.1.0",
"constructs": "^10.0.0",
"cookie-parser": "^1.4.3",
"csv-stringify": "^6.3.0",
"d3": "^5.7.0",
"dayjs": "^1.11.10",
"debounce": "^2.0.0",
"deep-equal": "^2.2.0",
"ejs": "^3.1.9",
"express": "^4.16.4",
"express-session": "^1.15.6",
"file-saver": "^2.0.0-rc.4",
"helmet": "^7.1.0",
"mongodb": "^6.3.0",
"morgan": "^1.9.1",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"qs": "^6.11.0",
"react": "^18.2.0",
"react-colorful": "^5.5.1",
"react-dom": "^18.2.0",
"react-hook-form": "^7.45.2",
"react-router-dom": "^6.13.0",
"recharts": "^2.10.4",
"serve-favicon": "^2.5.0",
"source-map-support": "^0.5.21",
"winston": "^3.1.0",
"yup": "^1.3.3"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.3",
"@babel/eslint-parser": "^7.24.1",
"@babel/node": "^7.18.5",
"@babel/plugin-proposal-decorators": "^7.13.15",
"@babel/plugin-transform-react-constant-elements": "^7.13.13",
"@babel/plugin-transform-react-inline-elements": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.14.0",
"@babel/preset-react": "^7.13.13",
"@babel/register": "^7.13.16",
"@shelf/jest-mongodb": "^4.2.0",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.5",
"@types/node": "20.7.1",
"@types/qs": "^6.9.11",
"aws-cdk": "^2.100.0",
"babel-loader": "^9.1.3",
"babel-plugin-react-html-attrs": "^3.0.5",
"babel-polyfill": "^6.26.0",
"clean-webpack-plugin": "^4.0.0",
"concurrently": "^8.2.0",
"connect-livereload": "^0.6.1",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"dotenv": "^16.3.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-universe": "^12.0.0",
"eslint-plugin": "^1.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-testing-library": "^6.2.0",
"html-webpack-plugin": "^5.5.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.7.0",
"livereload": "^0.9.3",
"nodemon": "^3.0.2",
"prettier": "^3.2.5",
"style-loader": "^3.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "~5.2.2",
"webpack": "^5.35.1",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0"
}
}