-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·45 lines (45 loc) · 1.39 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
{
"name": "@richapps/ngnode",
"version": "1.0.2-rc.4",
"description": "Angular builder for building node applications",
"author": {
"name": "Benjamin Dobler",
"email": "[email protected]",
"url": "http://www.richapps.de"
},
"repository": {
"type": "git",
"url": "https://github.com/BenjaminDobler/ngnode"
},
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.json && npm run copy:files && npm run copy:json",
"copy:json": "cpx 'src/**/*.json' ./dist",
"copy:files": "cpx \"./src/schematics/application/files/**/*\" \"./dist/schematics/application/files\""
},
"schematics": "./dist/schematics/collection.json",
"builders": "./dist/builders/builders.json",
"dependencies": {
"@angular-devkit/architect": "^0.1102.0",
"@angular-devkit/build-webpack": "^0.1102.0",
"@angular-devkit/core": ">=8.0.0",
"@angular-devkit/schematics": ">=8.0.0",
"@schematics/angular": ">=8.0.0",
"ts-loader": "^6.0.4",
"webpack-inject-plugin": "^1.5.3",
"webpack-merge": "^4.2.2",
"ws": "^7.1.2"
},
"peerDependencies": {},
"devDependencies": {
"@types/jasmine": "^3.3.13",
"@types/node": "~11.9.0",
"@types/webpack": "^4.4.33",
"@types/webpack-dev-server": "^3.1.6",
"cpx": "^1.5.0",
"jasmine": "^3.0.0",
"quicktype": "^15.0.194",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript": "~3.4.3"
}
}