forked from mrgorji/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.52 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
{
"name": "veritone-docs",
"description": "Veritone Docs",
"version": "1.0.0",
"main": "n/a",
"scripts": {
"build": "sh ./schemagen.sh && webpack",
"build:watch": "sh ./schemagen.sh && webpack -w",
"copy-schemas": "cp -r ./node_modules/veritone-json-schemas/schemas src",
"postinstall": "yarn copy-schemas # really just for IDE intelligence",
"start": "concurrently -k \"yarn build:watch\" \"yarn serve\"",
"serve": "docsify serve ./build-${ENVIRONMENT:-local}",
"test": "HTTP_PORT=$(($$%5000+3000)) codeceptjs run --reporter mocha-multi",
"test:only": "E2E_SKIP_BOOTSTRAP=true yarn test"
},
"devDependencies": {
"allure-commandline": "^2.9.0",
"clean-webpack-plugin": "1.0.1",
"codeceptjs": "^2.0.7",
"concurrently": "^6.0.2",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^3.1.0",
"docsify-cli": "^4.2.0",
"get-graphql-schema": "^2.1.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"markdownlint": "^0.16.0",
"markdownlint-cli": "^0.14.0",
"mocha-junit-reporter": "^1.18.0",
"mocha-multi": "^1.0.1",
"node-sass": "^4.12.0",
"puppeteer": "^1.13.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"svg-inline-loader": "^0.8.0",
"webpack": "^4.36.1",
"webpack-cli": "^3.3.6",
"yarn": "^1.22.0"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"@sentry/browser": "5.7.1",
"docsify": "^4.12.0",
"jquery": "^3.5.0",
"jquery-ui": "^1.12.1",
"veritone-json-schemas": "^1.0.2"
}
}