-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·82 lines (82 loc) · 2.55 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
78
79
80
81
82
{
"name": "somul-system-backend",
"version": "1.0.0",
"main": "index.js",
"repository": "",
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^24.0.13",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"typescript": "^3.4.5"
},
"dependencies": {
"@sendgrid/mail": "^6.5.3",
"@slack/events-api": "^2.3.2",
"@slack/web-api": "^5.8.0",
"@slack/webhook": "^5.0.3",
"@types/bluebird": "^3.5.30",
"@types/cors": "^2.8.6",
"@types/express-session": "^1.15.16",
"@types/graphql": "^14.5.0",
"@types/node": "^13.7.4",
"@types/passport": "^1.0.2",
"@types/passport-github": "^1.1.5",
"@types/passport-google-oauth20": "^2.0.3",
"@types/passport-local": "^1.0.33",
"@types/randomstring": "^1.1.6",
"@types/sha256": "^0.2.0",
"@types/sinon": "^7.5.2",
"@types/swagger-jsdoc": "^3.0.2",
"@types/swagger-ui-express": "^4.1.1",
"async-mutex": "^0.1.4",
"aws-sdk": "^2.643.0",
"body-parser": "^1.19.0",
"commander": "^4.1.1",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"express-session": "^1.17.0",
"graphql": "^14.6.0",
"graphql-custom-types": "^1.5.1",
"graphql-passport": "^0.6.1",
"graphql-tools": "^4.0.7",
"mysql2": "^2.1.0",
"node-mocks-http": "^1.8.1",
"nodemon": "^2.0.3",
"passport": "^0.4.1",
"passport-github": "^1.1.0",
"passport-google-oauth20": "^2.0.0",
"passport-local": "^1.0.0",
"randomstring": "^1.1.5",
"reflect-metadata": "^0.1.13",
"sendgrid": "^5.2.3",
"sequelize": "^5.21.5",
"sequelize-typescript": "^1.1.0",
"sha256": "^0.2.0",
"sinon": "^9.0.1",
"swagger-jsdoc": "^3.5.0",
"swagger-ui-express": "^4.1.3",
"ts-node": "^8.9.0",
"type-graphql": "^0.17.6",
"winston": "^3.2.1"
},
"scripts": {
"test": "jest",
"build": "tsc",
"watch-ts": "tsc -w",
"nodemon": "nodemon --watch src --delay 1 --exec 'ts-node' src/index.ts serve",
"watch-node": "node dist/index.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript, Node\" -c \"yello.bold, cyan.bold\" \"yarn run watch-ts\" \"yarn run watch-nodemon\"",
"start": "tsc && node dist/index.js serve",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint --fix src/*.ts src/**/*.ts src/**/**/*.ts src/**/**/**/*.ts"
}
}