-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.47 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
{
"name": "@craigmiller160/market-tracker-api",
"version": "1.3.2",
"publishConfig": {
"registry": "https://nexus.craigmiller160.us/repository/npm-private/"
},
"author": "craigmiller160",
"files": [
"build",
"yarn.lock"
],
"scripts": {
"start": "nodemon --watch 'src/**' --ext 'ts,js,json' --exec 'env-cmd -f .env env-cmd -f .env.private ts-node src'",
"build": "yarn lint && yarn test && yarn forceBuild",
"start:prod": "node build",
"lint": "craig-lint",
"test": "craig-test --runInBand",
"forceBuild": "ts-node scripts/build.ts",
"prepare": "husky install",
"validate": "yarn lint && yarn test"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --fix --max-warnings=0"
},
"resolutions": {
"@babel/code-frame": "^7.16.0",
"@babel/helper-validator-identifier": "^7.15.7"
},
"devDependencies": {
"@craigmiller160/config-merge": "^1.0.1",
"@craigmiller160/eslint-config-js": "1.0.1",
"@craigmiller160/eslint-config-prettier": "1.0.1",
"@craigmiller160/eslint-config-ts": "1.0.2",
"@craigmiller160/jest-config": "1.0.4",
"@craigmiller160/jest-config-ts": "1.0.2",
"@craigmiller160/prettier-config": "1.0.1",
"@relmify/jest-fp-ts": "^1.1.1",
"@types/cookie-parser": "^1.4.2",
"@types/cross-spawn": "^6.0.2",
"@types/elliptic": "^6.4.14",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/jwk-to-pem": "^2.0.1",
"@types/passport": "^1.0.7",
"@types/passport-jwt": "^3.0.6",
"@types/supertest": "^2.0.11",
"axios-mock-adapter": "^1.20.0",
"cross-spawn": "^7.0.3",
"elliptic": "^6.5.4",
"env-cmd": "^10.1.0",
"husky": "^7.0.4",
"key-encoder": "^2.0.3",
"lint-staged": "^12.1.7",
"mongodb-memory-server": "^8.1.0",
"nodemon": "^2.0.15",
"supertest": "^6.1.6",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"dependencies": {
"@craigmiller160/ts-functions": "1.4.1",
"axios": "^0.24.0",
"body-parser": "^1.19.1",
"cookie-parser": "^1.4.6",
"date-fns": "^2.28.0",
"date-fns-tz": "^1.2.2",
"express": "^4.17.2",
"express-session": "^1.17.2",
"fp-ts": "^2.11.5",
"https": "^1.0.0",
"io-ts": "^2.2.16",
"jsonwebtoken": "^8.5.1",
"jwk-to-pem": "^2.0.5",
"mongoose": "^6.1.4",
"nanoid": "^3.1.32",
"nocache": "^3.0.1",
"passport": "^0.5.2",
"passport-jwt": "^4.0.0",
"qs": "^6.10.3",
"ts-pattern": "^4.0.2",
"winston": "^3.3.3"
}
}