forked from OAI/tools.openapis.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.31 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
{
"name": "oai-tooling",
"version": "1.0.0",
"main": "index.js",
"author": "Chris Wood <chris@arborcomputing.com>",
"license": "MIT",
"scripts": {
"build:data:full": "gulp full",
"build:data:metadata": "gulp metadata",
"build:site:cname": "echo Setting CNAME to ${CNAME:-tools.openapis.org} && echo ${CNAME:-tools.openapis.org} > docs/CNAME",
"build:site:webpack": "webpack --mode ${NODE_ENV:-development}",
"build:site:eleventy": "eleventy",
"build:site": "NODE_ENV=production npm-run-all -l clean build:site:* && yarn run build:site:cname",
"build:all": "npm run build:data:full && npm run build:site",
"coverage": "export NODE_ENV=test && nyc --reporter=html --reporter=text ./node_modules/.bin/_mocha test/lib/* --exit --recursive --timeout 10000",
"coverage:desktop": "yarn run coverage && open coverage/index.html",
"clean": "rimraf docs/*",
"serve:webpack": "webpack --mode development --watch",
"serve:eleventy": "ELEVENTY_ENV=development eleventy --serve",
"serve": "yarn run clean && yarn run build:site:cname && npm-run-all --parallel serve:*",
"test": "export NODE_ENV=test && mocha --exit --recursive --timeout 10000"
},
"dependencies": {
"ajv": "^8.10.0",
"axios": "^0.24.0",
"bayes": "^1.0.0",
"bluebird": "^3.7.2",
"fancy-log": "^1.3.3",
"github-fork-ribbon-css": "^0.2.3",
"graphql": "14",
"graphql-request": "^3.7.0",
"gulp-cli": "^2.3.0",
"js-yaml": "^4.1.0",
"jsonpath": "^1.1.1",
"lzutf8": "^0.6.0",
"talisman": "^1.1.4",
"tw-elements": "^1.0.0-beta2",
"yargs": "^17.2.1"
},
"devDependencies": {
"@11ty/eleventy": "^1.0.1",
"autoprefixer": "^10.4.7",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"css-loader": "^6.7.1",
"dotenv": "^16.0.3",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"gulp": "^4.0.2",
"gulp-rename": "^2.0.0",
"gulp-transform": "^3.0.5",
"mini-css-extract-plugin": "^2.6.0",
"mocha": "^9.1.3",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"postcss": "^8.4.14",
"postcss-loader": "^7.0.0",
"rimraf": "^3.0.2",
"sinon": "^12.0.1",
"tailwindcss": "^3.1.3",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
},
"packageManager": "yarn@1.22.19"
}