-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.52 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
{
"name": "monster-siren-api",
"version": "1.1.7",
"description": "A api collect and server powered by nodejs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"/dist",
"LICENSE",
"README.md",
"package.json"
],
"keywords": [
"monster-siren",
"arknights",
"nodejs",
"塞壬唱片",
"明日方舟"
],
"scripts": {
"dev": "tsc -w",
"build": "tsc && node addSuffixJs.js",
"start": "npm run build && node dist/server.js",
"serve": "nodemon --experimental-specifier-resolution=node dist/app.js",
"test": "npm run build && mocha",
"lint": "eslint \"**/*.{js,ts}\"",
"lint-fix": "eslint --fix \"**/*.{js,ts}\"",
"sync:info": "node bin/sync.js -info"
},
"repository": {
"type": "git",
"url": "git+https://github.com/QingXia-Ela/MonsterSirenApi.git"
},
"author": "QingXia-Ela",
"license": "MIT",
"bugs": {
"url": "https://github.com/QingXia-Ela/MonsterSirenApi/issues"
},
"homepage": "https://github.com/QingXia-Ela/MonsterSirenApi#readme",
"dependencies": {
"axios": "^1.3.4",
"chalk": "^5.2.0",
"express": "^4.18.2"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^18.15.3",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"mocha": "^10.2.0",
"nodemon": "^2.0.21",
"prettier": "^2.8.4",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.9.5"
}
}