-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.69 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
{
"name": "analytodon",
"version": "1.17.4",
"private": true,
"scripts": {
"dev": "next dev",
"db:init": "docker run -d --name analytodon-db -p 27017:27017 -e MONGO_INITDB_DATABASE=analytodon -v `pwd`/test/data:/docker-entrypoint-initdb.d mongo",
"db:start": "docker start analytodon-db",
"db:stop": "docker stop analytodon-db",
"db:terminate": "docker rm analytodon-db",
"build": "next build",
"start": "NODE_OPTIONS='-r @newrelic/next' next start -p 80",
"prettier:check": "npx prettier --check '{components,pages,types,models,redux,helpers,service,schemas,templates}/**/*.{js,jsx,ts,tsx,json,css,scss,md,html}'",
"prettier:write": "npx prettier --write '{components,pages,types,models,redux,helpers,service,schemas,templates}/**/*.{js,jsx,ts,tsx,json,css,scss,md,html}'",
"lint": "next lint && npm run prettier:check",
"docker-build": "docker pull node:lts && docker build -t productionbuild/analytodon .",
"docker-push": "docker push productionbuild/analytodon",
"deploy:live": "npm run docker-build && npm run docker-push && eb deploy Analytodon-env1"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.10.16",
"@mui/material": "^5.10.16",
"@newrelic/next": "^0.10.0",
"@reduxjs/toolkit": "^1.9.1",
"@types/node": "18.19.39",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"axios": "^1.2.0",
"bcrypt": "^5.1.0",
"cookie": "^0.6.0",
"csv-stringify": "^6.3.4",
"date-fns": "^2.29.3",
"joi": "^17.7.0",
"js-file-download": "^0.4.12",
"jsonwebtoken": "^8.5.1",
"megalodon": "^5.0.1",
"mongoose": "^6.7.5",
"newrelic": "^11.19.0",
"next": "13.5.6",
"next-redux-wrapper": "^8.0.0",
"nodemailer": "^6.8.0",
"numeral": "^2.0.6",
"pino": "^8.7.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-redux": "^8.0.5",
"recharts": "^2.1.16",
"timezone-support": "^3.1.0",
"typescript": "5.5.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie": "^0.6.0",
"@types/jsonwebtoken": "^8.5.9",
"@types/nodemailer": "^6.4.7",
"@types/numeral": "^2.0.2",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.3.2"
}
}