-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.9 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
{
"name": "charging-pile-scheduler",
"version": "1.0.0",
"main": "index.js",
"author": "az0s",
"license": "MIT",
"devDependencies": {
"@jest/globals": "^29.5.0",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.0",
"@types/mongoose": "^5.11.97",
"@types/node": "^18.15.11",
"@types/socket.io": "^3.0.2",
"concurrently": "^8.0.1",
"csv-writer": "^1.6.0",
"jest": "^29.0.3",
"mongodb-memory-server": "^8.9.2",
"nodemon": "^2.0.22",
"supertest": "^6.2.4",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"scripts": {
"playground": "ts-node ./scripts/playground.ts",
"docGen": "ts-node ./scripts/docGen.ts",
"exportSchema": "ts-node ./scripts/exportSchema.ts",
"initDB": "ts-node ./scripts/initExampleRecord.ts",
"genUUID": "ts-node ./scripts/genUUID.ts",
"rmDB": "ts-node ./scripts/rmDB.ts",
"genTestJWT": "ts-node ./scripts/genTestJWT.ts",
"dispatch": "ts-node ./scripts/manualDispatch.ts",
"build": "npx tsc",
"start": "ts-node dist/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"test": "jest --watchAll --verbose false",
"deprecated:test:leak": "jest --watchAll --verbose --detectOpenHandles",
"deprecated:test:cov": "npm test -- --coverage --watchAll=false",
"deprecated:deploy": "npx tsc && cp ./configuration/web.config ./dist ",
"export": "ts-node ./scripts/exportRecord.ts"
},
"dependencies": {
"axios": "^1.3.4",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.7.2",
"openai": "^3.2.1",
"socket.io": "^4.5.3",
"ts-node": "^10.9.1",
"uuid": "^9.0.0"
}
}