-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
65 lines (65 loc) · 1.68 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
{
"name": "create-mock-backend",
"version": "0.0.10",
"description": "This is npx starter package for installing your favourite backend template for mockBee.",
"keywords": [
"miragejs",
"mock-server",
"npx",
"fake-api"
],
"main": "dist/main.js",
"bin": "bin.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-package": "rollup -c",
"lint": "eslint ./",
"lint-fix": "eslint ./ --fix",
"format": "prettier --write \"**/*.{js,jsx,json,md}\""
},
"lint-staged": {
"*.js": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && pretty-quick --staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/neogcamp/mockBee.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/neogcamp/mockBee/issues"
},
"homepage": "https://github.com/neogcamp/mockBee#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.5",
"rollup": "^2.57.0",
"rollup-plugin-terser": "^7.0.2",
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-react": "^7.26.1",
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1"
},
"dependencies": {
"chalk": "^4.1.2",
"degit": "^2.8.4",
"execa": "^5.1.1",
"fs-extra": "^10.0.0",
"path": "^0.12.7",
"prompts": "^2.4.1"
}
}