forked from johannchopin/restapify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 3.09 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
92
93
94
95
{
"name": "restapify",
"version": "2.3.4",
"license": "MIT",
"private": false,
"keywords": ["rest-api", "api", "mock", "json", "fake"],
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/src/index.d.ts",
"files": [
"dist",
"dist/node_modules/restapify-dashboard",
"bin"
],
"bin": {
"restapify": "bin/restapify"
},
"scripts": {
"restapify:init": "yarn move:dashboard",
"readme:generate-doc-table": "yarn doctoc ./docs/README.md ./docs/deployment/README.md --gitlab",
"move:dashboard": "node ./scripts/moveDashboard.js",
"clean": "yarn rimraf ./dist",
"test": "FORCE_COLOR=3 jest --silent --no-cache",
"test--windows": "set FORCE_COLOR=\"3\" && jest --silent --no-cache",
"test:manual": "yarn ts-node-dev --project ./ts-node-tsconfig.json --files test/run.ts",
"test:types": "yarn tsc --noEmit",
"start": "yarn nodemon --watch test src/index.js",
"postbuild": "yarn cpx './src/dashboard-public/**' ./dist/dashboard-public/",
"lint": "yarn eslint . --ext .js,.ts",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "rollup -c",
"build": "yarn clean && yarn restapify:init && yarn build:types && yarn build:js"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@babel/runtime": "^7.13.7",
"boxen": "^5.0.0",
"chalk": "^4.1.0",
"chokidar": "^3.4.3",
"commander": "^6.2.1",
"cors": "^2.8.5",
"esm": "^3.2.25",
"express": "^4.17.1",
"faker": "^5.2.0",
"http": "^0.0.1-security",
"jsonschema": "^1.4.0",
"lodash.range": "^3.2.0",
"nocache": "^2.1.0",
"open": "^7.3.0",
"restapify-dashboard": "^1.3.11"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-object-rest-spread": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.13.6",
"@babel/preset-env": "^7.13.5",
"@babel/preset-typescript": "^7.13.0",
"@parcel/packager-ts": "2.0.0-nightly.608",
"@parcel/transformer-typescript-types": "2.0.0-nightly.608",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/express-serve-static-core": "^4.17.13",
"@types/faker": "^5.1.5",
"@types/lodash.range": "^3.2.6",
"@types/node": "^14.14.9",
"@types/serve-static": "^1.13.8",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"cpx": "^1.5.0",
"doctoc": "^2.0.0",
"eslint": "^7.13.0",
"eslint-config-airbnb-base": "^14.2.1",
"fs-extra": "^10.0.0",
"isomorphic-fetch": "^3.0.0",
"jest": "^26.6.3",
"nodemon": "^2.0.5",
"replace-buffer": "^1.2.1",
"rimraf": "^3.0.2",
"rollup": "^2.39.1",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.11",
"ts-node-dev": "^1.0.0",
"tslib": "^2.1.0",
"typescript": "^4.2.2",
"webpack": "^5.4.0"
}
}