forked from jasonraimondi/ts-oauth2-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.74 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
{
"version": "2.2.2",
"name": "@jmondi/oauth2-server",
"author": "Jason Raimondi <jason@raimondi.us>",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=12"
},
"scripts": {
"clean": "rimraf dist",
"prebuild": "run-s clean",
"build": "tsc -p tsconfig.build.json",
"start": "tsc -p tsconfig.build.json --watch",
"test": "jest",
"test:cov": "jest --coverage",
"format": "prettier --write \"**/*.ts\"",
"lint": "eslint \"{src,test}/**/*.ts\" --fix",
"prepublishOnly": "run-s build test",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/ms": "^0.7.31",
"@types/node": "^17.0.21",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"body-parser": "^1.19.2",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"express": "^4.17.3",
"fastify": "^3.27.3",
"jest": "^27.5.1",
"jest-date-mock": "^1.0.8",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"supertest": "^6.2.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"tslib": "^2.3.1",
"typescript": "^4.6.2",
"vuepress": "^1.9.7",
"vuepress-plugin-plausible": "^0.0.2"
},
"dependencies": {
"jsonwebtoken": "^8.5.1",
"ms": "^2.1.3",
"uri-js": "^4.4.1"
},
"prettier": {
"printWidth": 120,
"semi": true,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "all",
"arrowParens": "avoid"
}
}