-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
90 lines (90 loc) · 2.29 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
{
"name": "the-fake-backend",
"description": "Build a fake backend by providing the content of files or JavaScript objects through configurable routes.",
"version": "3.8.0",
"license": "ISC",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build"
],
"engines": {
"node": ">=16.15.0",
"npm": ">=7.24.2"
},
"author": {
"name": "Rafael Henrique Berro",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/rhberro/the-fake-backend"
},
"keywords": [
"fake",
"data",
"backend",
"http",
"api",
"server",
"mock",
"mocks",
"express"
],
"scripts": {
"commit": "git-cz",
"format": "prettier --write 'source/**/*'",
"format:staged": "pretty-quick --staged",
"prepare": "rollup --config",
"build": "rollup --config",
"start": "rollup --config --watch",
"test": "jest --runInBand",
"test:coverage": "jest --runInBand --coverage",
"semantic-release": "semantic-release"
},
"dependencies": {
"apollo-server-express": "3.10.0",
"chalk": "^4.0.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"fuzzy": "^0.1.3",
"http-proxy-middleware": "^2.0.1",
"inquirer": "^8.0.0",
"inquirer-autocomplete-prompt": "^1.0.2",
"path-to-regexp": "^6.2.0",
"ramda": "^0.27.1"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^12.0.0",
"@jest-mock/express": "^0.9.4",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.11",
"@types/http-proxy-middleware": "^0.19.3",
"@types/inquirer": "^6.5.0",
"@types/jest": "^25.2.1",
"@types/node": "^13.11.0",
"@types/ramda": "^0.27.32",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.3",
"jest": "^26.6.3",
"memfs": "^3.4.7",
"mock-fs": "^4.12.0",
"prettier": "2.0.4",
"pretty-quick": "^2.0.1",
"rollup": "^1.31.0",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.25.3",
"semantic-release": "^21.0.1",
"strip-ansi": "^6.0.0",
"ts-jest": "^25.3.1",
"typescript": "^3.8.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}