-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
91 lines (91 loc) · 2.79 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
{
"name": "liv2bgirl",
"version": "1.0.0",
"description": "",
"author": "Bits of Good <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/GTBitsOfGood/Liv2BGirl.git"
},
"bugs": {
"url": "https://github.com/GTBitsOfGood/Liv2BGirl/issues"
},
"homepage": "https://github.com/GTBitsOfGood/Liv2BGirl#readme",
"husky": {
"hooks": {
"pre-commit": "npm run format"
}
},
"scripts": {
"dev": "next -p 3000",
"build": "NODE_ENV=production next build",
"postinstall": "NODE_ENV=production next build",
"analyze-build": "NODE_ENV=production ANALYZE=true next build",
"start": "NODE_ENV=production node app.js",
"lint": "eslint --fix --ext .jsx --ext .js .",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"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 f01d76ea-43ca-4487-838c-ac1a0189f150 | fx .notes > \".env\""
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.9",
"@iconify/icons-bx": "^1.0.2",
"@iconify/icons-dashicons": "^1.0.5",
"@iconify/icons-gridicons": "^1.0.6",
"@iconify/icons-mdi": "^1.0.88",
"@iconify/react": "^1.1.3",
"bad-words": "^3.0.3",
"bcryptjs": "^2.4.3",
"bootstrap": "^4.5.3",
"clsx": "^1.1.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"is-hotkey": "^0.1.6",
"isomorphic-unfetch": "^3.0.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.20",
"mongodb": "^3.6.2",
"mongoose": "^5.10.6",
"next": "^9.4.4",
"next-images": "^1.4.0",
"node-sass": "^4.14.1",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-bootstrap": "^1.4.0",
"react-dom": "^16.13.1",
"slate": "^0.58.3",
"slate-history": "^0.58.3",
"slate-react": "^0.58.3"
},
"devDependencies": {
"@bitwarden/cli": "^1.12.0",
"@next/bundle-analyzer": "^9.4.4",
"babel-eslint": "^10.1.0",
"case-sensitive-paths-webpack-plugin": "^2.3.0",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"fx": "^20.0.2",
"husky": "^4.2.5",
"prettier": "2.0.5",
"prettier-eslint": "^9.0.1"
},
"cacheDirectories": [
".next/cache"
],
"engines": {
"node": "12.x",
"npm": "6.x"
}
}