-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
85 lines (85 loc) · 2.94 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
{
"name": "db-viewer-component",
"version": "4.4.9",
"description": "A web component for showing db schemas",
"repository": {
"type": "git",
"url": "https://github.com/ayeressian/db-viewer-component"
},
"keywords": [
"database",
"db",
"schema",
"viewer"
],
"engineStrict": true,
"engines": {
"node": "14.x"
},
"scripts": {
"start": "webpack serve --mode development --env development --config ./webpack.config/webpack.dev.config.ts",
"build-prod": "webpack --mode=production --config=./webpack.config/webpack.config.ts",
"build-dev": "webpack --mode=development --config=./webpack.config/webpack.config.ts",
"build-dev-watch": "webpack --mode=development --watch --config=./webpack.config/webpack.config.ts",
"publish-npm": "rm -rf dist && yarn run build-prod && yarn publish",
"publish-npm-dev": "rm -rf dist && yarn run build-dev && yarn publish --tag dev",
"test": "mochapack \"test/**/*.ts\" --mode development --webpack-config=./webpack.config/webpack.test.config.ts -r jsdom-global/register",
"test:watch": "yarn run test --watch",
"test:debug": "webpack serve --config webpack.config/webpack.test.debug.config.ts --hot --inline",
"e2e": "npx playwright test --browser=all",
"e2e-chromium": "npx playwright test --browser=chromium",
"e2e-firefox": "npx playwright test --browser=firefox",
"e2e-webkit": "npx playwright test --browser=webkit",
"start-and-e2e": "start-server-and-test \"yarn start\" http://localhost:9998 \"yarn run e2e\"",
"lint": "npx eslint . --ext .ts"
},
"main": "dist/main.js",
"types": "dist/src/index.d.ts",
"author": "",
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.13.0",
"@types/chai": "^4.2.12",
"@types/copy-webpack-plugin": "^6.3.0",
"@types/lodash": "^4.14.159",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.13",
"@types/sinon": "^9.0.9",
"@types/sinon-chai": "^3.2.4",
"@types/webpack": "^4.41.25",
"@types/webpack-dev-server": "^3.11.0",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"acorn": "^8.0.4",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"css-loader": "^5.0.1",
"eslint": "^7.7.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.1.4",
"html-loader": "^1.3.2",
"http-server": "^0.12.3",
"img-loader": "^3.0.0",
"jsdom": "16.4.0",
"jsdom-global": "3.0.2",
"mocha": "^8.2.1",
"mocha-loader": "^5.1.5",
"mochapack": "^2.0.6",
"playwright": "^1.13.0",
"prettier": "^2.0.5",
"sinon": "^9.2.2",
"sinon-chai": "^3.5.0",
"start-server-and-test": "^1.11.3",
"ts-loader": "^8.0.12",
"ts-node": "^8.10.2",
"typescript": "^4.3.2",
"url-loader": "^4.1.1",
"webpack": "^4.41.25",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"ajv": "^6.12.4",
"lodash": "^4.17.20"
}
}