-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
106 lines (106 loc) · 3.65 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
{
"name": "gen-soln",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"debug": "NODE_OPTIONS='--inspect' next",
"run:ts-node:script": "cross-env ts-node -O {\\\"module\\\":\\\"commonjs\\\"} -r module-alias/register",
"db:migrate": "yarn run:ts-node:script server/migration.ts",
"run:server:action": "yarn run:ts-node:script server/run-action.ts",
"start": "next start",
"lint": "yarn lint:tsc && yarn lint:eslint",
"lint:tsc": "tsc --noEmit",
"lint:eslint": "eslint \"./**/*.{tsx,ts,js,jsx}\" --fix --cache",
"secrets": "yarn secrets:logout && cross-env-shell BW_SESSION=`bw login [email protected] --raw` \"yarn secrets:sync\"",
"secrets:logout": "(bw logout || exit 0)",
"secrets:login": "bw login [email protected]",
"secrets:sync": "bw sync && bw get item gen-soln/.env.local | fx .notes > \".env.local\"",
"mui:codemod:top-level-imports": "find components pages utils -name '*.tsx' -print | xargs npx jscodeshift -t node_modules/@material-ui/codemod/lib/v4.0.0/top-level-imports.js --parser=tsx"
},
"dependencies": {
"@googlemaps/google-maps-services-js": "^3.1.13",
"@material-ui/core": "^4.9.2",
"@material-ui/lab": "^4.0.0-alpha.56",
"@reduxjs/toolkit": "^1.3.4",
"@stripe/react-stripe-js": "^1.1.2",
"@stripe/stripe-js": "^1.3.2",
"@unicef/material-ui-currency-textfield": "^0.8.6",
"autosuggest-highlight": "^3.1.1",
"bcryptjs": "^2.4.3",
"dotenv": "^8.2.0",
"isomorphic-unfetch": "^3.0.0",
"js-cookie": "^2.2.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.2",
"mongoose": "^5.9.1",
"nanoid": "^3.0.2",
"next": "9.5.4",
"next-auth": "GTBitsOfGood/next-auth#67498cf8fe11ca6b54cc7d4d62aefa6f0ac9992a",
"next-cookies": "^2.0.3",
"node-cache": "^5.1.2",
"query-string": "^6.13.7",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-infinite-scroller": "^1.2.4",
"stripe": "^8.40.0"
},
"devDependencies": {
"@bitwarden/cli": "^1.11.0",
"@material-ui/codemod": "^4.5.0",
"@types/autosuggest-highlight": "^3.1.0",
"@types/bcryptjs": "^2.4.2",
"@types/faker": "^5.1.2",
"@types/googlemaps": "^3.39.13",
"@types/js-cookie": "^2.2.6",
"@types/jsonwebtoken": "^8.3.8",
"@types/lodash": "^4.14.161",
"@types/material-ui": "^0.21.7",
"@types/migrate-mongo": "^7.0.1",
"@types/mongoose": "^5.7.36",
"@types/next-auth": "^3.1.10",
"@types/node": "^14.6.0",
"@types/querystringify": "^2.0.0",
"@types/react": "^16.9.47",
"@types/react-infinite-scroller": "^1.2.1",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"babel-eslint": "^10.1.0",
"commander": "^6.1.0",
"cross-env": "^7.0.2",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"eslint-plugin-tsc": "^1.2.0",
"faker": "^5.1.0",
"fx": "^19.0.1",
"husky": "^4.2.5",
"jscodeshift": "^0.11.0",
"lint-staged": "^10.2.7",
"migrate-mongo": "^8.1.1",
"module-alias": "^2.2.2",
"prettier": "^2.0.5",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{tsx,ts,js,jsx}": [
"eslint --fix --plugin tsc --rule 'tsc/config: [2, {configFile: \"./tsconfig.json\"}]'"
]
},
"_moduleAliases": {
"server": "server",
"utils": "utils",
"config": "config.ts"
}
}