-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
executable file
·56 lines (56 loc) · 2.35 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
{
"name": "@richapps/ngtron",
"version": "1.0.0-rc.8",
"description": "Easily serve and build angular based electron applications",
"author": {
"name": "Benjamin Dobler",
"email": "[email protected]",
"url": "http://www.richapps.de"
},
"repository": {
"type": "git",
"url": "https://github.com/BenjaminDobler/ngtron"
},
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.json && npm run copy:json && npm run copy:js && npm run copy:files",
"copy:json": "cpx 'src/**/*.json' ./dist",
"copy:js": "cpx 'src/**/*.js' ./dist",
"copy:files": "cpx \"./src/schematics/files/**/*\" \"./dist/schematics/files\"",
"link:schematic": "npm link && cd sandbox/singleproject-sandbox && npm link @richapps/ngtron && cd ../workspace-existing && npm link @richapps/ngtron && cd ../workspace && npm link @richapps/ngtron",
"clean": "git checkout HEAD -- sandbox && git clean -f -d sandbox",
"test-schematic-single": "cd sandbox/singleproject-sandbox && ng generate @richapps/ngtron:app --project=singleproject-sandbox --singleProject=true",
"test-schematic-workspace-existing": "cd sandbox/workspace-existing && ng generate @richapps/ngtron:app --project=app",
"test-schematic-workspace": "cd sandbox/workspace && ng generate @richapps/ngtron:app"
},
"schematics": "./dist/schematics/collection.json",
"builders": "./dist/builders/builders.json",
"dependencies": {
"@angular-devkit/core": ">=8.0.0",
"@angular-devkit/schematics": ">=8.0.0",
"@schematics/angular": ">=8.3.12",
"find-free-port": "^2.0.0",
"fs-extra": "8.1.0",
"webpack-inject-plugin": "^1.5.3",
"ws": "^7.1.2"
},
"peerDependencies": {
"@angular-devkit/build-angular": ">=0.803.12"
},
"devDependencies": {
"@angular-devkit/build-angular": ">=0.803.12",
"@angular/compiler-cli": "^9.1.9",
"@types/jasmine": "^3.3.13",
"@types/node": "~11.9.0",
"@types/webpack": "^4.39.3",
"@types/webpack-dev-server": "^3.1.6",
"codelyzer": "^5.2.2",
"cpx": "^1.5.0",
"electron-builder": "^22.6.1",
"inquirer": "^7.1.0",
"jasmine": "^3.0.0",
"quicktype": "^15.0.194",
"tslint": "~5.15.0",
"typescript": "~3.4.3"
}
}