-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 2.46 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
{
"name": "@fgo-planner/api-server",
"version": "0.0.1",
"description": "Backend API server for the FGO Planner project.",
"engines": {
"node": ">=16.10.0"
},
"scripts": {
"start": "npm run serve",
"build": "npm run build-ts && npm run lint",
"serve": "node dist/server.js",
"watch-node": "nodemon dist/server.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"test": "jest --forceExit --coverage --verbose",
"watch-test": "npm run test -- --watchAll",
"build-ts": "tsc --strict",
"watch-ts": "tsc -w --strict",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"serve-debug": "nodemon --inspect dist/server.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\""
},
"repository": {
"type": "git",
"url": "https://github.com/fgo-planner/api-server.git"
},
"author": "Alvin Quach",
"license": "MIT",
"bugs": {
"url": "https://github.com/fgo-planner/api-server/issues"
},
"homepage": "https://github.com/fgo-planner/api-server#readme",
"dependencies": {
"@fgo-planner/common-core": "^0.1.4",
"@fgo-planner/data-mongo": "0.9.2",
"@fgo-planner/data-core": "^0.9.5",
"@fgo-planner/transform-core": "^0.9.2",
"axios": "^0.25.0",
"bcryptjs": "^2.4.3",
"bson": "^4.6.0",
"cookie-parser": "^1.4.6",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"jsonwebtoken": "^9.0.0",
"module-alias": "^2.2.2",
"multer": "^1.4.5-lts.1",
"reflect-metadata": "^0.1.13",
"typedi": "^0.10.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/module-alias": "^2.0.1",
"@types/multer": "^1.4.7",
"@types/node": "^14.10.0",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"concurrently": "^7.0.0",
"eslint": "^8.21.0",
"jest": "^27.4.7",
"nodemon": "^2.0.15",
"ts-jest": "^27.1.3",
"typescript": "^4.7.4"
}
}