This repository has been archived by the owner on May 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.16 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
{
"name": "web-myna",
"version": "0.0.13",
"description": "emulate your api for testing and development",
"main": "src/index.js",
"bin": {
"webmyna": "dist/index.js"
},
"files": [
"dist/",
"docs/",
"src/"
],
"repository": "https://github.com/marmelab/web-myna",
"author": "Alexis Janvier <[email protected]> (https://www.marmelab.com)",
"license": "MIT",
"private": false,
"type": "module",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"start": "nodemon --exec \"node --experimental-modules\" --watch src src/index.js",
"lint:js": "eslint ./src --ext .js",
"jsdoc": "jsdoc2md src/**/*.js > ./docs/references/references.md",
"build": "parcel build cli/index.js --target node --no-source-maps && git add dist"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint",
"git add"
]
},
"dependencies": {
"boxen": "4.2.0",
"chalk": "4.0.0",
"clear": "0.1.0",
"clui": "0.3.6",
"convict": "5.2.0",
"express": "4.17.1",
"figlet": "1.4.0",
"http-proxy-middleware": "1.0.3",
"inquirer": "7.1.0",
"lodash.omit": "4.5.0",
"md5": "2.2.1",
"minimist": "1.2.5",
"nodemon": "2.0.3",
"query-string": "6.12.1",
"rc": "1.2.8",
"serialize-to-js": "3.1.1",
"signale": "1.4.0"
},
"devDependencies": {
"@babel/core": "7.9.0",
"@babel/preset-env": "7.9.5",
"babel-eslint": "10.1.0",
"babel-jest": "25.4.0",
"docusaurus-init": "1.14.1",
"eslint": "6.8.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-jest": "23.8.2",
"eslint-plugin-jsdoc": "24.0.0",
"eslint-plugin-prettier": "3.1.3",
"husky": "4.2.5",
"jest": "25.4.0",
"jsdoc-to-markdown": "5.0.3",
"lint-staged": "10.1.7",
"parcel-bundler": "1.12.4",
"parcel-plugin-shebang": "1.2.8",
"prettier": "2.0.5"
}
}