-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 3.68 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
{
"name": "table4js-components",
"version": "0.2.14",
"description": "JavaScript table components library - table4js",
"homepage": "https://table4js.com",
"authors": [
"Serge T <@domain.com>"
],
"private": true,
"license": "MIT",
"keywords": [
"JavaScript",
"table",
"grid",
"components"
],
"moduleType": "umd",
"repository": {
"type": "git",
"url": "https://github.com/table4js/components.git"
},
"scripts": {
"start": "webpack serve --config ./webpack.config.dev.js",
"start:react": "webpack serve --config ./webpack.config.react.dev.js",
"start:e2e": "webpack serve --config ./webpack.config.e2e.js",
"build": "npm run build:ko && npm run build:react && npm run build:standalone",
"build:ko": "webpack --config ./webpack.config.ko.js",
"build:react": "webpack --config ./webpack.config.react.js",
"build:standalone": "webpack --config ./webpack.config.standalone.js",
"build:types": "npm run build:types:ko && npm run build:types:react && npm run build:types:standalone",
"build:types:standalone": "tsc sources/common/index.ts --declaration --emitDeclarationOnly --skipLibCheck --target es5 --moduleResolution node --experimentalDecorators true --outFile site/dist/standalone/table4.d.ts && echo \"declare module 'table4js' { import main = require('index'); export = main; }\" >> site/dist/standalone/table4.d.ts",
"build:types:ko": "tsc sources/knockout/index.ts --declaration --emitDeclarationOnly --skipLibCheck --target es5 --moduleResolution node --experimentalDecorators true --outFile site/dist/knockout/table4.d.ts && echo \"declare module 'table4ko' { import main = require('knockout/index'); export = main; }\" >> site/dist/knockout/table4.d.ts",
"build:types:react": "tsc sources/react/index.ts --declaration --emitDeclarationOnly --skipLibCheck --jsx react --target es5 --moduleResolution node --experimentalDecorators true --outFile site/dist/react/table4.d.ts && echo \"declare module 'table4react' { import main = require('react/index'); export = main; }\" >> site/dist/react/table4.d.ts",
"test": "jest",
"test:dev": "jest --watch",
"e2e": "playwright test",
"doc:gen": "typedoc ./sources/common/index.ts --out ./site/docs --readme ./publish/doc-index.md --name 'table4js-components' --includeVersion --customCss ./publish/table4js-theme.css --plugin ./publish/table4js-theme.js --hideGenerator",
"release": "standard-version --message \"Release: %s\"",
"format": "prettier --write ./sources/react"
},
"dependencies": {
"knockout": "^3.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@playwright/test": "^1.32.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^27.1.5",
"@types/knockout": "^3.4.60",
"@types/node": "^7.0.5",
"@types/react": "^18.0.35",
"@webpack-cli/serve": "^1.6.1",
"copy-webpack-plugin": "9",
"css-loader": "^6.7.3",
"generate-package-json-webpack-plugin": "^2.6.0",
"html-webpack-plugin": "latest",
"jest": ">=27.0.0 <28.0.0-0",
"jest-environment-jsdom": ">=27.0.0 <28.0.0-0",
"json-loader": "latest",
"mini-css-extract-plugin": "^2.7.5",
"prettier": "^2.8.7",
"raw-loader": "^4.0.2",
"react-test-renderer": "^18.2.0",
"sass": "^1.62.0",
"sass-loader": "^8.0.2",
"standard-version": "^9.3.2",
"style-loader": "^0.23.1",
"svg-inline-loader": "^0.8.2",
"text-loader": "0.0.1",
"ts-jest": "^27.1.4",
"ts-loader": "latest",
"typedoc": "^0.22.15",
"typescript": "4.7.4",
"underscore": "^1.13.6",
"webpack": "^5.79.0",
"webpack-cli": "^4.3.0",
"webpack-dev-server": "^4.13.2"
}
}