-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.19 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
{
"name": "nekocap-server",
"version": "0.5.0",
"description": "The NekoCap server",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/nopol10/nekocap-server"
},
"license": "MIT",
"dependencies": {
"@sentry/node": "^7.6.0",
"@sentry/tracing": "^7.6.0",
"ass-compiler": "^0.1.4",
"axios": "1.6.8",
"compression": "^1.7.4",
"express": "~4.11.x",
"helmet": "^4.2.0",
"lodash": "^4.17.20",
"lz-string": "1.5.0",
"parse": "4.3.1",
"parse-server": "6.5.5",
"parse-server-firebase-auth": "2.0.0",
"sanitize-filename": "1.6.3",
"throttled-queue": "2.1.4"
},
"scripts": {
"start": "node index.js",
"build": "webpack --config webpack.prod.js",
"docker:build": "cd .. && docker build --tag nekocap-server:latest -f nekocap-server/Dockerfile . && cd ./nekocap-server",
"watch": "concurrently \"webpack -w --config webpack.dev.js\" \"npm:dash\"",
"dash": "parse-dashboard --dev --config parse-dashboard-config.json",
"dash:live": "parse-dashboard --dev --config parse-dashboard-config-live.json",
"ytcc": "ts-node --project tsconfig-ytcc.json migration/ytcc-test.ts"
},
"engines": {
"node": ">=10.0"
},
"devDependencies": {
"@babel/cli": "7.23.9",
"@babel/core": "7.24.0",
"@babel/plugin-transform-runtime": "7.24.0",
"@babel/preset-env": "7.24.0",
"@babel/preset-react": "7.23.3",
"@babel/preset-typescript": "7.23.3",
"@babel/runtime": "7.24.0",
"@types/lodash": "^4.14.166",
"@types/lz-string": "^1.3.34",
"@types/node": "^14.10.3",
"@types/parse": "3.0.9",
"babel-loader": "9.1.3",
"concurrently": "^5.3.0",
"copy-webpack-plugin": "12.0.2",
"dotenv": "^8.2.0",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "9.0.2",
"license-webpack-plugin": "^2.3.1",
"nodemon-webpack-plugin": "4.8.2",
"prettier": "3.2.5",
"terser-webpack-plugin": "5.3.10",
"ts-loader": "^8.0.3",
"ts-node": "^10.7.0",
"tsconfig-paths-webpack-plugin": "4.1.0",
"typescript": "^4.3.2",
"webpack": "5.91.0",
"webpack-cli": "5.1.4",
"webpack-merge": "5.10.0",
"webpack-node-externals": "3.0.0"
}
}