-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.92 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.92 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
{
"name": "clm-2.0",
"version": "1.0.0",
"type": "module",
"description": "The new and improved backend for Cube Level Midnight",
"main": "./dist/index.js",
"scripts": {
"build": "rimraf ./dist && tsc && copyfiles -u 1 \"src/GraphQL/**/*.graphql\" dist",
"dev": "nodemon -L ./dist/index.js",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"lint": "eslint --ignore-path .gitignore .",
"postinstall": "tsc",
"start": "node dist/index.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --config ./jest.config.json --watch --runInBand",
"web-push": "web-push"
},
"author": "Casey Johnson",
"license": "ISC",
"dependencies": {
"@graphql-tools/graphql-file-loader": "^7.3.1",
"@graphql-tools/load": "^7.4.0",
"@graphql-tools/schema": "^8.3.0",
"array-move": "^3.0.1",
"axios": "^0.21.4",
"bcryptjs": "^2.4.3",
"csv-string": "^4.0.1",
"express": "^4.17.1",
"express-graphql": "^0.12.0",
"graphql": "^15.7.0",
"graphql-subscriptions": "^1.2.1",
"graphql-ws": "^4.4.2",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.2.2",
"mongoose": "^6.0.12",
"nodemailer": "^6.4.18",
"nodemailer-sendgrid-transport": "^0.2.0",
"web-push": "^3.4.5",
"ws": "^7.5.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.5",
"@types/mongodb": "^4.0.7",
"@types/nodemailer": "^6.4.4",
"@types/web-push": "^3.3.2",
"@types/ws": "^8.2.0",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"copyfiles": "^2.4.1",
"eslint": "^8.1.0",
"eslint-config-strongloop": "^2.1.0",
"jest": "^27.3.1",
"nodemon": "^2.0.9",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"supertest": "^6.0.1",
"typescript": "^4.4.4"
},
"engines": {
"node": "14.18.1"
}
}