-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.92 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "streakr-server",
"version": "1.0.5",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node dist/src/server.js",
"dist": "sh ./scripts/dist.sh",
"dev": "nodemon --exec ts-node -- ./src/server.ts",
"lint": "eslint **/*.ts --ignore-pattern node_modules/",
"unit-tests": "jest --config=./jest.unit.config.js --coverage --detectOpenHandles",
"intergration-tests": "jest --config=./jest.intergration.config.js --forceExit --runInBand",
"unit-tests-ci": "jest --config=./jest.unit.config.js --forceExit --runInBand",
"intergration-tests-ci": "jest --config=./jest.intergration.config.js --forceExit --runInBand",
"test": "npm run unit-tests && npm run intergration-tests",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand",
"preversion": "npm run lint",
"version": "git push",
"update": "npm version patch",
"streakoid": "rm -rf node_modules/@streakoid/ && npm i @streakoid/streakoid-models @streakoid/streakoid-sdk"
},
"keywords": [],
"author": "Reece Kidd",
"license": "ISC",
"dependencies": {
"@sentry/node": "^5.15.5",
"@streakoid/streakoid-models": "^1.0.134",
"@streakoid/streakoid-sdk": "^1.0.621",
"@types/amazon-cognito-auth-js": "^1.2.1",
"@types/cors": "^2.8.5",
"@types/dotenv": "^6.1.1",
"@types/jwt-decode": "^2.2.1",
"@types/lodash": "^4.14.153",
"@types/multer": "^1.3.10",
"@types/multer-s3": "^2.7.7",
"@types/node-fetch": "^2.3.7",
"@types/react": "^16.9.35",
"@types/sharp": "^0.23.0",
"@types/shortid": "0.0.29",
"@types/yargs": "^13.0.0",
"@typescript-eslint/eslint-plugin": "^2.3.2",
"@typescript-eslint/parser": "^2.3.2",
"agenda": "^2.0.2",
"amazon-cognito-identity-js": "^4.3.0",
"aws-amplify": "^1.2.4",
"aws-sdk": "^2.686.0",
"axios": "^0.19.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"config": "^2.0.1",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"express": "^4.16.3",
"generate-password": "^1.5.1",
"graphql": "^14.5.8",
"joi": "^13.6.0",
"jsonwebtoken": "^8.5.1",
"jwk-to-pem": "^2.0.3",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.15",
"moment-timezone": "^0.5.25",
"mongoose": "^5.9.4",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"node-fetch": "^2.6.0",
"nodemailer": "^6.3.0",
"react": "^16.13.1",
"react-stripe-checkout": "^2.6.3",
"request": "^2.88.2",
"shortid": "^2.2.15",
"stripe": "^8.81.0",
"supertest": "^4.0.2",
"unique-names-generator": "^4.2.0"
},
"devDependencies": {
"@types/agenda": "^2.0.4",
"@types/bcrypt": "^3.0.0",
"@types/bcryptjs": "^2.4.2",
"@types/bull": "^3.10.2",
"@types/express": "^4.16.0",
"@types/jest": "^23.3.14",
"@types/joi": "^13.6.3",
"@types/jsonwebtoken": "^8.3.0",
"@types/moment-timezone": "^0.5.12",
"@types/mongoose": "^5.5.29",
"@types/nodemailer": "^6.2.0",
"@types/passport": "^0.4.7",
"@types/passport-local": "^1.0.33",
"@types/redis": "^2.8.13",
"@types/supertest": "^2.0.7",
"husky": "^1.3.1",
"jest": "^23.6.0",
"nodemon": "^1.19.1",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"ts-jest": "^23.10.4",
"ts-node": "^7.0.1",
"typescript": "^3.0.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && pretty-quick --staged --verbose",
"pre-push": "npm run unit-tests"
}
}
}