forked from cidgoh/DataHarmonizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.44 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
{
"name": "data-harmonizer",
"version": "1.4.2",
"description": "A standardized spreadsheet editor and validator that can be run offline and locally",
"repository": "[email protected]:cidgoh/DataHarmonizer.git",
"license": "MIT",
"files": [
"./lib/dist"
],
"main": "./lib/dist/umd/index.js",
"module": "./lib/dist/es/index.js",
"exports": {
".": {
"import": "./lib/dist/es/index.js",
"require": "./lib/dist/umd/index.js"
},
"./data-harmonizer.css": {
"import": "./lib/dist/es/index.css",
"require": "./lib/dist/umd/index.css"
}
},
"imports": {
"#lib": "./lib/index.js"
},
"scripts": {
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"clean:lib": "rimraf lib/dist",
"clean:web": "rimraf web/dist",
"clean": "yarn clean:lib && yarn clean:web",
"build:lib": "yarn clean:lib && rollup --config lib/rollup.config.js",
"build:web": "yarn clean:web && webpack --mode=production --config web/webpack.config.js",
"dev": "webpack serve --mode=development --config web/webpack.config.js",
"test": "jest tests/"
},
"peerDependencies": {
"bootstrap": "4.x",
"jquery": "1.9.1 - 3",
"popper.js": "1.x"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-image": "^2.1.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"bootstrap": "4.3.1",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.6.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^28.1.3",
"jquery": "3.5.1",
"popper.js": "^1.16.1",
"prettier": "2.7.0",
"rimraf": "^3.0.2",
"rollup": "^2.75.6",
"rollup-jest": "^3.0.0",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-styles": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"style-loader": "^3.3.1",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.2"
},
"dependencies": {
"@selectize/selectize": "^0.13.5",
"date-fns": "^2.28.0",
"file-saver": "^2.0.5",
"handsontable": "^7.4.2",
"sifter": "^0.5.4",
"xlsx": "^0.18.5"
},
"jest": {
"transform": {
"\\.js$": [
"rollup-jest"
]
}
}
}