-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.79 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
{
"name": "example-adaptable-with-parceljs",
"version": "1.0.0",
"private": true,
"description": "Demo of the Adaptable - using parceljs as build tool for quick setup",
"scripts": {
"dev": "parcel index.html --no-cache",
"build": "parcel build index.html",
"minify": "export NODE_OPTIONS=--openssl-legacy-provider && webpack",
"serve-minified": "open http://localhost:1234/with-minified && npx serve . -p 1234 "
},
"repository": {
"type": "git",
"url": "git+https://github.com/AdaptableTools/example-adaptable-with-parceljs.git"
},
"author": "JonnyAdaptableTools",
"bugs": {
"url": "https://github.com/AdaptableTools/example-adaptable-with-parceljs/issues"
},
"homepage": "https://github.com/AdaptableTools/example-adaptable-with-parceljs#readme",
"dependencies": {
"@adaptabletools/adaptable": "^19.0.0",
"@ag-grid-community/client-side-row-model": "~32.1.0",
"@ag-grid-community/core": "~32.1.0",
"@ag-grid-community/styles": "~32.1.0",
"@ag-grid-enterprise/charts": "~32.1.0",
"@ag-grid-enterprise/clipboard": "~32.1.0",
"@ag-grid-enterprise/column-tool-panel": "~32.1.0",
"@ag-grid-enterprise/excel-export": "~32.1.0",
"@ag-grid-enterprise/filter-tool-panel": "~32.1.0",
"@ag-grid-enterprise/menu": "~32.1.0",
"@ag-grid-enterprise/range-selection": "~32.1.0",
"@ag-grid-enterprise/rich-select": "~32.1.0",
"@ag-grid-enterprise/row-grouping": "~32.1.0",
"@ag-grid-enterprise/server-side-row-model": "~32.1.0",
"@ag-grid-enterprise/side-bar": "~32.1.0",
"@ag-grid-enterprise/sparklines": "~32.1.0",
"@ag-grid-enterprise/status-bar": "~32.1.0",
"parcel": "^2.11.0"
},
"devDependencies": {
"prettier": "^2.7.1",
"typescript": "4.6.4",
"webpack": "^4.41.3",
"webpack-cli": "^3.3.10"
}
}