-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.23 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.23 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
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "angular-web3",
"version": "0.0.6-beta1",
"description": "A schematics packages providing tools for developping Angular Dapps",
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "npm run build && jasmine src//ng-add/tests/**/*_spec.js",
"schema": "cd src/ng-add && npx -p dtsgenerator dtsgen schema.json -o schema.d.ts"
},
"keywords": [
"angular",
"ng add",
"blockchain",
"ethereum",
"polygon"
],
"ng-add": {
"save": false
},
"repository": {
"type": "git",
"url": "https://github.com/jdonosocoding/angular-web3"
},
"author": "@jdonoso_coding",
"license": "MIT",
"schematics": "./src/collection.json",
"dependencies": {
"@angular-devkit/core": "^15.0.2",
"@angular-devkit/schematics": "^15.0.2",
"@angular/cdk": "^15.0.1",
"@angular/material": "^15.0.1",
"@schematics/angular": "^15.0.2",
"chai": "^4.3.6",
"inquirer": "^8.2.1",
"json-parser": "^3.1.2",
"json5": "^2.2.0",
"rxjs": "^7.5.2",
"typescript": "~4.8.2"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/inquirer": "^8.2.0",
"@types/jasmine": "~3.10.0",
"@types/node": "^12.11.1",
"jasmine": "^3.5.0"
}
}