-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.18 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
67
68
69
70
71
72
73
74
75
76
77
{
"name": "starship-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prebuild": "del dist",
"build": "tsc -build",
"postbuild": "cpy src/starship-schema dist/starship-schema && cpy ./templates ../dist/ --cwd=src --parents",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"tsc": "tsc",
"eslint": "eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/starshipapp/starship-server.git"
},
"keywords": [],
"author": "",
"license": "proprietary",
"bugs": {
"url": "https://github.com/starshipapp/starship-server/issues"
},
"homepage": "https://github.com/starshipapp/starship-server#readme",
"devDependencies": {
"@types/ioredis": "^4.28.7",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"concurrently": "^7.0.0",
"cpy-cli": "^3.1.1",
"del-cli": "^4.0.1",
"eslint": "^8.8.0",
"eslint-plugin-jsdoc": "^37.7.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"npm-run-all": "^4.1.5",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
},
"dependencies": {
"@graphql-tools/schema": "^8.3.1",
"@types/archiver": "^5.3.1",
"@types/bcrypt": "^5.0.0",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^17.0.13",
"@types/node-emoji": "^1.8.1",
"@types/nodemailer": "^6.4.4",
"apollo-server-cache-redis": "^3.3.1",
"apollo-server-errors": "^3.3.1",
"apollo-server-express": "^3.6.2",
"archiver": "^5.3.0",
"aws-sdk": "^2.1066.0",
"axios": "^0.25.0",
"bcrypt": "^5.0.1",
"dataloader": "^2.0.0",
"dotenv": "^14.3.2",
"express": "^4.17.2",
"graphql": "^16.3.0",
"graphql-redis-subscriptions": "^2.4.2",
"graphql-subscriptions": "^2.0.0",
"graphql-ws": "^5.5.5",
"jsonwebtoken": "^8.5.1",
"log4js": "^6.4.1",
"mongoose": "^6.1.8",
"mongoose-nanoid": "^2.0.0",
"nanoid": "^3.2.0",
"node-emoji": "^1.11.0",
"node-pre-gyp": "^0.15.0",
"nodemailer": "^6.7.2",
"otplib": "^12.0.1",
"rebuild": "^0.1.2",
"subscriptions-transport-ws": "^0.11.0",
"uuidv4": "^6.2.12",
"ws": "^8.4.2",
"yn": "^3.1.1"
}
}