-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.26 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
{
"name": "modpacks-web",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "yarn prepare && next build",
"start": "next start",
"prepare": "yarn lang:extract && yarn lang:compile",
"type-check": "tsc --noEmit",
"format": "prettier --write **/*.{tsx,ts,scss}",
"lint": "eslint --fix **/*.{tsx,ts}",
"test:ci": "yarn type-check && yarn lint",
"lang:extract": "formatjs extract {pages,components}/**/*.{ts,tsx} --format simple --id-interpolation-pattern [sha512:contenthash:base64:6] --out-file lang/en.json",
"lang:compile": "formatjs compile-folder --ast --format simple lang compiled-lang"
},
"dependencies": {
"@emotion/babel-plugin": "^11.3.0",
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@formatjs/cli": "^5.0.2",
"@formatjs/intl-pluralrules": "^5.0.3",
"@styled-icons/fa-regular": "^10.34.0",
"@styled-icons/fa-solid": "^10.34.0",
"@types/formidable": "^1.2.1",
"@types/jsonwebtoken": "^8.5.2",
"@types/lodash": "^4.14.168",
"@types/luxon": "^1.26.5",
"@types/mongodb": "^3.6.12",
"@types/next-auth": "^3.15.0",
"babel-plugin-formatjs": "^10.3.25",
"cuid": "^2.1.8",
"formidable": "^1.2.2",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"luxon": "^2.4.0",
"mongodb": "^4.7.0",
"mongoose": "^6.4.3",
"next": "12",
"next-auth": "^4.9.0",
"polished": "^4.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intl": "^5.20.3",
"react-tooltip": "^4.2.17",
"sharp": "^0.30.7",
"slugify": "^1.6.5",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@types/node": "^12.12.21",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"eslint": "^8.19.0",
"eslint-config-next": "^12.2.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"next-transpile-modules": "^9.0.0",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"license": "MIT",
"lint-staged": {
"**/*.{tsx,ts,scss}": "prettier --write",
"**/*.{tsx,ts}": "eslint --fix"
}
}