-
-
Notifications
You must be signed in to change notification settings - Fork 1k
/
package.json
62 lines (62 loc) · 1.76 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
{
"name": "@vendure/ui-devkit",
"version": "1.0.0-beta.3",
"description": "A library for authoring Vendure Admin UI extensions",
"keywords": [
"vendure",
"javascript",
"extensions"
],
"author": "Michael Bromley <[email protected]>",
"homepage": "https://github.com/vendure-ecommerce/vendure#readme",
"license": "MIT",
"files": [
"client",
"compiler",
"scaffold"
],
"publishConfig": {
"access": "public"
},
"main": "client/index.js",
"types": "client/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/vendure-ecommerce/vendure.git"
},
"scripts": {
"build:client": "rimraf ./client && rollup -c rollup.config.js --configProduction",
"build:compiler": "rimraf ./compiler && tsc -p tsconfig.compiler.json",
"build": "yarn build:client && yarn build:compiler",
"watch": "rimraf ./lib && rollup -c rollup.config.js -w",
"lint": "tslint --fix --project ./"
},
"bugs": {
"url": "https://github.com/vendure-ecommerce/vendure/issues"
},
"dependencies": {
"@angular-devkit/build-angular": "~0.1102.3",
"@angular/cli": "^11.2.3",
"@angular/compiler": "^11.2.4",
"@angular/compiler-cli": "^11.2.4",
"@vendure/admin-ui": "^1.0.0-beta.3",
"@vendure/common": "^1.0.0-beta.3",
"chalk": "^4.1.0",
"chokidar": "^3.5.1",
"fs-extra": "^9.1.0",
"glob": "^7.1.6",
"rxjs": "^6.6.6"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^11.2.0",
"@types/fs-extra": "^9.0.8",
"@types/glob": "^7.1.3",
"@vendure/core": "^1.0.0-beta.3",
"rimraf": "^3.0.2",
"rollup": "^2.40.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"tslib": "^2.1.0",
"typescript": "4.1.5"
}
}