-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.21 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.21 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
89
90
91
92
93
94
{
"name": "web-jam-back",
"version": "2.0.0",
"description": "web-jam.com",
"main": "index.js",
"engines": {
"node": ">=22.13.1 <23",
"npm": ">=11.1.0 <12"
},
"files": [
"src/"
],
"license": "MIT",
"scripts": {
"rmrf": "rimraf build && rimraf JaMmusic && rimraf coverage",
"start:debug": "rimraf build && tsc && concurrently --raw \"npm:ts-start\" \"npm:ts-watch\"",
"ts-watch": "tsc -w",
"cc": "codeclimate analyze -f html > codeclimate.html",
"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",
"cleaninstall": "npm install -g rimraf && rimraf yarn.lock && rimraf node_modules && rimraf package-lock.json && npm install -g npm@latest && npm run rmrf && npm cache clean --force && npm install",
"node:debug": "node --inspect-brk index.js",
"test": "eslint ./src && rimraf coverage && npm run test:jest",
"test:lint": "eslint ./src --fix",
"test:local": "npm run test:lint && rimraf coverage && npm run test:jest && npm run cc",
"test:jest": "jest --no-cache --config jest.config.json --runInBand --detectOpenHandles --forceExit",
"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": "^4.9.5",
"@sendgrid/mail": "^8.0.0",
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.13",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.17",
"@types/express-sslify": "^1.2.2",
"@types/module-alias": "^2.0.4",
"@types/morgan": "^1.9.4",
"@types/superagent": "^4.1.16",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"csvtojson": "^2.0.10",
"debug": "^4.3.4",
"dotenv": "^16.3.1",
"express": "^4.21.2",
"express-sslify": "^1.2.0",
"graphql": "^16.8.1",
"helmet": "^7.1.0",
"jwt-simple": "^0.5.6",
"module-alias": "^2.2.3",
"moment": "^2.29.4",
"mongoose": "^8.9.5",
"morgan": "^1.10.0",
"rimraf": "^5.0.5",
"snyk": "^1.1118.0",
"superagent": "^8.1.2",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/jest": "^29.5.9",
"@types/supertest": "^2.0.16",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"eslint": "^8.53.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-es": "^4.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-security": "^1.7.1",
"jest": "^29.7.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1"
},
"_moduleAliases": {
"src": "build/src",
"@lib": "build/src/lib"
},
"snyk": true
}