-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
71 lines (71 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
{
"name": "abyss-lab",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"@dnd-kit/core": "^6.0.5",
"@dnd-kit/sortable": "^7.0.1",
"@dnd-kit/utilities": "^3.2.0",
"@mdi/js": "^6.5.95",
"@mdi/react": "^1.5.0",
"@types/file-saver": "^2.0.5",
"classcat": "^5.0.4",
"date-fns": "^2.27.0",
"html-to-image": "^1.10.6",
"next": "^12.1.6",
"next-i18next": "^10.1.0",
"next-sitemap": "^3.1.22",
"nprogress": "^0.2.0",
"open-color": "^1.9.1",
"ramda": "^0.27.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-indiana-drag-scroll": "^2.1.0",
"react-select": "^5.4.0",
"theme-ui": "^0.12.1",
"yaml": "^2.1.1"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/node-fetch": "^2.6.1",
"@types/nprogress": "^0.2.0",
"@types/ramda": "^0.27.60",
"@types/react": "^17.0.37",
"cheerio": "^1.0.0-rc.10",
"eslint": "8.5.0",
"eslint-config-next": "12.0.7",
"file-saver": "^2.0.5",
"filenamify": "^4.3.0",
"http-server": "^14.1.0",
"jest": "^29.6.1",
"node-fetch": "^2.6.7",
"npm-run-all": "^4.1.5",
"sort-keys": "^4.2.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"scripts": {
"dev": "run-p dev:web dev:assets",
"dev:web": "next dev -p 4000",
"dev:assets": "http-server assets -p 4001 -s --cors",
"build": "npm run compile:novels && next build",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "next lint",
"tsc": "tsc --watch",
"node": "ts-node -T -P ./tsconfig-node.json",
"assets-sync": "sh ./secrets/scripts/sync-public-assets.sh",
"compile:novels": "npm run compile:novel-7s-chapters-en && npm run compile:novel-7s-chapters-kr && npm run compile:novel-7s-archives-kr",
"compile:novel-7s-chapters-en": "npm run node src/scripts/compile7sChaptersEn.ts",
"compile:novel-7s-chapters-kr": "npm run node src/scripts/compile7sChaptersKr.ts",
"compile:novel-7s-archives-kr": "npm run node src/scripts/compile7sArchivesKr.ts",
"copy-dump": "sh ./src/scripts/copyRawAssets.sh",
"compile:raw-data": "npm run node src/scripts/compileRawData.ts",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC"
}