-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.2 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.2 KB
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
{
"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 --no-source-maps --no-cache index.html",
"build": "parcel build --no-source-maps index.html",
"build:minified": "webpack",
"serve-minified": "open http://localhost:1234/with-minified && npx serve . -p 1234",
"serve-minified-aggrid": "open http://localhost:1234/with-minified-aggrid && 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": "~22.0.0",
"ag-grid-enterprise": "35.0.1"
},
"devDependencies": {
"parcel": "2.15.4",
"prettier": "^2.7.1",
"process": "^0.11.10",
"typescript": "4.9.5",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"terser-webpack-plugin": "^5.3.10"
}
}