forked from bombastictranz/Solscan-files
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 2 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
{
"name": "crmapp",
"version": "0.0.0",
"private": true,
"description": "WebComponents project for Ignite UI CLI",
"license": "MIT",
"author": "Infragistics",
"main": "dist/src/index.js",
"module": "dist/src/index.js",
"type": "module",
"exports": {
".": "./dist/src/index.js",
"./crmapp.js": "./dist/src/crmapp.js"
},
"scripts": {
"start": "tsc && concurrently -k -r \"tsc --watch\" \"wds\"",
"build": "rimraf dist && tsc && node --max-old-space-size=4096 node_modules/rollup/dist/bin/rollup -c rollup.config.mjs",
"start:build": "web-dev-server --root-dir dist --app-index index.html --open",
"lint": "eslint \"**/*.{js,ts}\" --ignore-path .gitignore",
"test": "tsc --project tsconfig.test.json && wtr"
},
"dependencies": {
"@vaadin/router": "^1.7.4",
"igniteui-webcomponents": "~4.7.0",
"igniteui-webcomponents-charts": "~4.7.0",
"igniteui-webcomponents-core": "~4.7.0",
"igniteui-webcomponents-grids": "~4.7.0",
"igniteui-webcomponents-inputs": "~4.7.0",
"igniteui-webcomponents-layouts": "~4.7.0",
"lit": "^2.6.1",
"typescript": "^4.9.4"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@open-wc/building-rollup": "^2.2.1",
"@open-wc/testing": "^3.1.7",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-node-resolve": "^15.0.1",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"@web/dev-server": "^0.1.35",
"@web/rollup-plugin-html": "^1.11.0",
"@web/rollup-plugin-import-meta-assets": "^1.0.7",
"@web/test-runner": "^0.15.0",
"babel-plugin-template-html-minifier": "^4.1.0",
"concurrently": "^7.6.0",
"deepmerge": "^4.2.2",
"eslint": "^8.32.0",
"eslint-plugin-lit": "^1.8.2",
"igniteui-cli": "^11.0.2",
"rimraf": "^4.1.2",
"rollup": "^2.79.0",
"rollup-plugin-copy-assets": "^2.0.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-workbox": "^6.2.0",
"source-map": "^0.7.4",
"tslib": "^2.4.1"
}
}