-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.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
{
"name": "npp",
"version": "1.0.0",
"description": "A portal built to help nonprofits apply to work with Bits of Good",
"author": "Bits of Good <[email protected]>",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/GTBitsOfGood/npp.git"
},
"bugs": {
"url": "https://github.com/GTBitsOfGood/npp/issues"
},
"homepage": "https://github.com/GTBitsOfGood/npp#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,scss}": "prettier --write"
},
"scripts": {
"dev": "next dev -p 3000",
"build": "next build && node sitemap.js",
"start": "npm run build && next start",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,scss}\"",
"lint": "eslint --fix --ext ts --ext tsx --ext js --ext jsx .",
"secrets": "npm run secrets:logout && cross-env-shell BW_SESSION=`bw login [email protected] --raw` \"npm run secrets:sync\"",
"secrets:logout": "(bw logout || exit 0)",
"secrets:login": "bw login [email protected]",
"secrets:sync": "bw sync && bw get item npp/.env.local | fx .notes > \".env.local\""
},
"dependencies": {
"@azure/storage-blob": "^12.4.1",
"@babel/core": "^7.13.10",
"@iconify/icons-dashicons": "^1.0.11",
"@iconify/icons-radix-icons": "^1.0.1",
"@ramonak/react-progress-bar": "^2.1.3",
"@types/pug": "^2.0.4",
"@vercel/node": "^1.9.0",
"clsx": "^1.1.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"email-templates": "^7.1.1",
"focus-visible": "^5.1.0",
"globby": "^11.0.1",
"isomorphic-unfetch": "^3.0.0",
"lodash": "^4.17.20",
"luxon": "^1.25.0",
"mongodb": "^3.6.1",
"mongoose": "^5.12.0",
"next": "^10.0.8",
"next-auth": "GTBitsOfGood/next-auth#67498cf8fe11ca6b54cc7d4d62aefa6f0ac9992a",
"next-images": "^1.6.2",
"next-offline": "^5.0.3",
"next-seo": "^4.17.0",
"normalize.css": "^8.0.1",
"pug": "^3.0.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-inlinesvg": "^2.0.1",
"sass": "^1.26.10",
"string-similarity": "^4.0.4",
"sweetalert2": "^10.10.0",
"twilio": "^3.57.0",
"uuid": "^8.3.1"
},
"devDependencies": {
"@bitwarden/cli": "^1.11.0",
"@iconify/icons-ant-design": "^1.0.8",
"@iconify/icons-bytesize": "^1.0.3",
"@iconify/icons-mdi": "^1.0.149",
"@iconify/react": "^1.1.3",
"@types/cors": "^2.8.10",
"@types/email-templates": "^7.1.0",
"@types/globby": "^9.1.0",
"@types/isomorphic-fetch": "0.0.35",
"@types/lodash": "^4.14.161",
"@types/luxon": "^1.25.0",
"@types/mongodb": "^3.5.27",
"@types/mongoose": "^5.7.36",
"@types/next-auth": "^3.1.3",
"@types/node": "^14.14.31",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/string-similarity": "^4.0.0",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.2",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"fx": "^20.0.0",
"husky": "^4.2.5",
"lint-staged": "^10.4.0",
"prettier": "^2.0.5",
"typescript": "^3.9.3"
},
"peerOptionalDependencies": {
"mongodb": "^3.6.1"
}
}