-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
66 lines (66 loc) · 2.17 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
{
"type": "commonjs",
"scripts": {
"dev": "node scripts/run-server.js",
"build": "node scripts/build-server.js",
"build-dev": "node scripts/build-dev.js",
"build-test": "node scripts/build-test.js",
"test": "node scripts/build-test.js && npm run jasmine",
"test-fast": "node scripts/build-test.js --fast-build && npm run jasmine",
"test-parallel": "node scripts/build-test.js && npm run jasmine-parallel",
"jasmine": "node --enable-source-maps node_modules/jasmine/bin/jasmine --config=./jasmine.json --random=false",
"jasmine-parallel": "node --enable-source-maps node_modules/jasmine/bin/jasmine --config=./jasmine.json --parallel=4 --random=true",
"lint": "eslint --quiet",
"lint-fix": "eslint --quiet --fix",
"lint-verbose": "eslint",
"get-cards": "node ./scripts/fetchdata.js"
},
"dependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.8.0",
"@stylistic/eslint-plugin": "^2.9.0",
"@types/eslint__js": "^8.42.3",
"@types/jasmine": "^5.1.4",
"@types/underscore": "^1.11.15",
"axios": "^1.7.2",
"axios-retry": "^4.5.0",
"bcrypt": "^5.1.1",
"cli-progress": "^3.12.0",
"dotenv": "^16.4.5",
"eslint": "^9.8.0",
"eslint-plugin-jasmine": "^4.2.0",
"events": "^3.3.0",
"express": "^4.21.0",
"fs": "^0.0.1-security",
"globals": "^15.9.0",
"jasmine": "^5.1.0",
"jasmine-spec-reporter": "^7.0.0",
"jasmine-terminal-reporter": "^1.0.3",
"jasmine-ts": "^0.4.0",
"jsonwebtoken": "^9.0.2",
"mkdirp": "^3.0.1",
"node-ts": "^6.1.0",
"path": "^0.12.7",
"socket.io": "^4.7.5",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.1",
"underscore": "^1.13.6",
"uuid": "^10.0.0",
"winston": "^3.14.2",
"winston-daily-rotate-file": "^5.0.0",
"zeromq": "^6.0.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.14.10",
"concurrently": "^9.1.0",
"cpy-cli": "^5.0.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import-x": "^4.6.1",
"eslint-plugin-unused-imports": "^4.1.4",
"nodemon": "^3.1.7",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tsc-watch": "^6.2.1"
}
}