-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.22 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
{
"name": "nook",
"version": "1.0.0",
"main": "index.js",
"license": "UNLICENSED",
"private": true,
"scripts": {
"dev": "next dev",
"start": "next start -- -p ${PORT:-3000}",
"lint": "tslint -c tslint.js -p tsconfig.json",
"prettier": "prettier --write './{pages,util}/**/*.{js,jsx,ts,tsx}'",
"prettier:check": "prettier --list-different './{pages,util}/**/*.{js,jsx,ts,tsx}'",
"build": "next build",
"test": "echo 'Todo'",
"data": "ts-node --project scripts/tsconfig.json ./scripts/data",
"assets": "ts-node --project scripts/tsconfig.json ./scripts/assets"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"engines": {
"node": "18.x"
},
"resolutions": {
"@types/react": "18.2.48"
},
"dependencies": {
"@emotion/react": "^11.11.3",
"@jimp/plugin-threshold": "^0.10.1",
"aws-sdk": "^2.654.0",
"cookie": "^0.4.0",
"date-fns": "^2.12.0",
"emotion-reset": "^3",
"fathom-client": "^3.0.0",
"fuse.js": "^5.1.0",
"graphql-request": "^1.8.2",
"i18next": "^19.4.3",
"isomorphic-fetch": "^2.2.1",
"jimp": "^0.10.1",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.2",
"next": "^14.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^11.3.5",
"react-icons": "^3.9.0",
"react-modal": "^3.16.1",
"react-select": "^3.1.0",
"react-spinners": "^0.8.1",
"react-virtualized": "^9.22.5",
"react-virtualized-auto-sizer": "^1.0.2",
"tesseract.js": "^2.1.1"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@emotion/babel-preset-css-prop": "^10.0.27",
"@types/cheerio": "^0.22.17",
"@types/cookie": "^0.3.3",
"@types/got": "^9.6.9",
"@types/jsonwebtoken": "^8.3.7",
"@types/multer": "^1.4.2",
"@types/node": "^18",
"@types/react": "^18.2.48",
"@types/react-modal": "^3.16.3",
"@types/react-select": "^3.0.11",
"@types/react-virtualized": "^9.21.29",
"cheerio": "^1.0.0-rc.3",
"dotenv-extended": "^2.7.1",
"got": "^10.7.0",
"husky": "^4.2.3",
"prettier": "^1.18.2",
"pretty-quick": "^2.0.1",
"throat": "^5.0.0",
"ts-node": "^8.6.2",
"tslint": "^5.20.1",
"typescript": "^5.3.3"
}
}