This repository was archived by the owner on Oct 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.25 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
{
"name": "mokksy",
"version": "0.0.12",
"bin": "./dist/index.js",
"license": "MIT",
"repository": "https://github.com/digitalmio/mokksy",
"author": "Maciej Ziehlke <[email protected]>",
"engines": {
"node": ">=10"
},
"keywords": [
"JSON",
"server",
"API",
"mock",
"fake",
"REST",
"JWT",
"testing",
"dummy"
],
"scripts": {
"dev": "ts-node-dev --files src/index.ts",
"test": "jest --coverage",
"tdd": "jest --watch",
"build": "tsc"
},
"devDependencies": {
"@types/fastify-cors": "^2.1.0",
"@types/fastify-favicon": "^0.3.0",
"@types/is-url": "^1.2.28",
"@types/jest": "^26.0.0",
"@types/lodash": "^4.14.150",
"@types/lowdb": "^1.0.9",
"@types/nanoid": "^2.1.0",
"@types/node": "^13.13.4",
"@types/pad-left": "^2.1.0",
"@types/pluralize": "^0.0.29",
"@types/pump": "^1.1.0",
"@types/split2": "^2.1.6",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.31.0",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.2.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.9.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"ts-jest": "^26.1.0",
"ts-node": "^8.9.1",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.8.3"
},
"dependencies": {
"chalk": "^4.0.0",
"fastify": "^2.15.1",
"fastify-cors": "^3.0.3",
"fastify-favicon": "^2.0.0",
"fastify-jwt": "^1.3.1",
"fastify-plugin": "^1.6.1",
"fastify-static": "^2.7.0",
"find-up": "^4.1.0",
"get-port": "^5.1.1",
"got": "^11.3.0",
"internal-ip": "^6.0.0",
"is-url": "^1.2.4",
"lodash": "^4.17.19",
"lowdb": "^1.0.0",
"nanoid": "^3.1.3",
"njwt": "^1.0.0",
"pad-left": "^2.1.0",
"pino-pretty": "^4.0.0",
"pluralize": "^8.0.0",
"pretty-ms": "^7.0.0",
"pump": "^3.0.0",
"split2": "^3.1.1",
"update-notifier": "^4.1.0",
"yargs": "^15.3.1"
},
"husky": {
"hooks": {
"pre-commit": "yarn eslint . --ext .js,.jsx,.ts,.tsx"
}
}
}