-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.27 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
{
"sideEffects": false,
"engines": {
"node": "20.10.0",
"npm": "9.5.0"
},
"scripts": {
"build": "remix build",
"build:sourcemap": "remix build --sourcemap",
"sentry:upload_sourcemaps": "node ./node_modules/@sentry/remix/scripts/sentry-upload-sourcemaps.js",
"delete_sourcemaps": "find ./public/build -type f -name '*.map' -delete && find ./build -type f -name '*.map' -delete",
"dev": "remix build && run-p \"dev:*\"",
"dev:node": "cross-env NODE_ENV=development nodemon --require dotenv/config ./server.js --watch ./server.js",
"dev:remix": "remix watch",
"start": "cross-env NODE_ENV=production node ./server.js",
"typecheck": "tsc",
"prepare": "husky install",
"lint": "npm run eslint && npm run prettier:check",
"eslint": "eslint .",
"prettier": "prettier --write .",
"prettier:check": "prettier --check .",
"test": "NODE_ENV=test jest",
"migrate": "knex migrate:latest",
"migrate:make": "knex migrate:make",
"migrate:down": "knex migrate:down"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"*.{js,jsx,ts,tsx,css,html,md,json,yml}": "prettier --write"
},
"jest": {
"clearMocks": true,
"resetMocks": false,
"setupFilesAfterEnv": [
"<rootDir>/setupTests.ts"
],
"testEnvironment": "jsdom",
"transform": {
"^.+\\.(ts|tsx|js|jsx)$": "ts-jest"
}
},
"dependencies": {
"@emotion/cache": "^11.10.5",
"@emotion/react": "^11.10.5",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.11.5",
"@newrelic/winston-enricher": "^4.0.1",
"@remix-run/express": "^1.18.0",
"@remix-run/node": "^1.18.0",
"@remix-run/react": "^1.18.0",
"@sentry/remix": "^7.65.0",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"express": "^4.18.2",
"helmet": "^6.0.1",
"isbot": "^3.6.5",
"knex": "^2.4.1",
"lodash": "^4.17.21",
"logrocket": "^3.0.1",
"morgan": "^1.10.0",
"newrelic": "^9.8.0",
"pg": "^8.8.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tiny-invariant": "^1.3.1",
"uuid": "^9.0.0",
"winston": "^3.8.2"
},
"devDependencies": {
"@remix-run/dev": "^1.18.0",
"@remix-run/eslint-config": "^1.18.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/bcryptjs": "^2.4.2",
"@types/jest": "^29.2.6",
"@types/lodash": "^4.14.191",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@unumid/eslint-config-react": "github:UnumID/eslint-config-react#v1.0.2",
"dotenv": "^16.0.3",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.1",
"husky": "^8.0.3",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"lint-staged": "^13.1.0",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}