-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.94 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.94 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "web-jam-back",
"version": "2.0.0",
"description": "web-jam.com",
"type": "module",
"main": "build/src/index.js",
"engines": {
"node": "24.15.0",
"npm": "11.12.1"
},
"files": [
"src/"
],
"license": "MIT",
"imports": {
"#src/*": "./build/src/*",
"#lib/*": "./build/src/lib/*"
},
"scripts": {
"rmrf": "rimraf build && rimraf JaMmusic && rimraf coverage",
"dev": "rimraf build && tsc && concurrently --raw \"npm:ts-start\" \"npm:ts-watch\"",
"ts-watch": "tsc -w",
"ts-start": "DEBUG=web-jam-back:* node --watch --trace-deprecation build/src/index.js",
"installglobals": "npm install -g npm@latest && npm install -g snyk",
"build:front": "./postinstallJaM.sh && rimraf ./JaMmusic/src && rimraf ./JaMmusic/test",
"postinstall": "npm run rmrf && tsc -p tsconfig.prod.json && npm run build:front",
"start": "node build/src/index.js",
"typecheck": "tsc --noEmit -p tsconfig.prod.json",
"cleanup": "rimraf yarn.lock && rimraf package-lock.json && rimraf node_modules && rimraf JaMmusic && rimraf build && rimraf coverage",
"cleaninstall": "npm install -g npm@latest && npm install -g rimraf && npm run cleanup && npm cache clean --force && npm install",
"smoketest": "npm run cleanup && npm install --omit=dev",
"node:debug": "node --inspect-brk index.js",
"test": "eslint ./src && rimraf coverage && npm run test:unit",
"test:lint": "eslint ./src --fix",
"test:local": "npm run test:lint && rimraf coverage && npm run test:unit",
"test:unit": "vitest run",
"test:all": "npm run test:local"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/WebJamApps/web-jam-back.git"
},
"author": "HandlersAndKickers <>",
"dependencies": {
"@apollo/server": "^5.5.0",
"@as-integrations/express5": "^1.1.2",
"@sendgrid/mail": "^8.0.0",
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.13",
"@types/debug": "^4.1.7",
"@types/express": "^5.0.6",
"@types/express-sslify": "^1.2.2",
"@types/morgan": "^1.9.4",
"@types/node": "^24.0.0",
"bcryptjs": "^3.0.3",
"cors": "^2.8.5",
"csvtojson": "^2.0.10",
"debug": "^4.3.4",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"express-sslify": "^1.2.0",
"graphql": "^16.8.1",
"helmet": "^8.1.0",
"jwt-simple": "^0.5.6",
"mongoose": "^9.6.1",
"morgan": "^1.10.0",
"rimraf": "^6.1.3",
"snyk": "^1.1118.0",
"typescript": "^5.3.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/supertest": "^7.2.0",
"@vitest/coverage-v8": "^4.1.5",
"@vitest/eslint-plugin": "^1.6.16",
"concurrently": "^9.2.1",
"eslint": "^10.2.1",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-security": "^4.0.0",
"globals": "^17.5.0",
"supertest": "^7.2.2",
"typescript-eslint": "^8.59.1",
"vitest": "^4.1.5"
},
"snyk": true
}