-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.45 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
{
"name": "sonolus-sus-server",
"version": "1.0.1",
"description": "SUS convertion server for sonolus-fastapi",
"main": "out/index.js",
"scripts": {
"start": "node out/index.js",
"build": "tsc -p tsconfig.json",
"dev": "ts-node-dev index.ts",
"lint": "tsc -p . --noEmit && eslint --ext .ts .",
"build:docker": "tsc -p tsconfig.json && docker build -t sonolus-sus-server .",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PurplePalette/sonolus-sus-server.git"
},
"author": "sevenc-nanashi",
"license": "MIT",
"bugs": {
"url": "https://github.com/PurplePalette/sonolus-sus-server/issues"
},
"homepage": "https://github.com/PurplePalette/sonolus-sus-server#readme",
"dependencies": {
"@aws-sdk/client-s3": "^3.168.0",
"@types/aws-sdk": "^2.7.0",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"sonolus-core": "^4.0.0",
"sonolus-pjsekai-engine": "^0.1.0-beta.15",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^29.0.0",
"@types/node": "^18.7.16",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.0.2",
"prettier": "^2.7.1",
"supertest": "^6.2.4",
"ts-jest": "^29.0.0",
"ts-node-dev": "^2.0.0"
}
}