-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.85 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
63
64
65
66
67
68
69
70
71
72
73
{
"name": "auto-generated-web-by-json",
"author": "Adolfo López Granados",
"version": "1.0.0",
"description": "Auto generated web using a structure develop in a JSON file.",
"keywords": [],
"license": "MIT",
"scripts": {
"copyConfigScripts": "copyfiles --up 1 ./src/*.js ./src/dist",
"copyViews": "copyfiles --up 1 ./src/index.html ./src/app/views/**/*.html ./src/dist",
"copyStyles": "copyfiles --up 1 ./src/styles.css ./src/app/styles/**/*.css ./src/dist",
"copyImages": "copyfiles --up 1 ./src/favicon.ico ./src/app/images/**/* ./src/dist",
"copyJsons": "copyfiles --up 1 ./src/app/jsons/**/* ./src/dist",
"copyMd": "copyfiles --up 1 ./src/app/md/**/* ./src/dist",
"copyFiles" : "concurrently \"npm run copyConfigScripts\" \"npm run copyViews\" \"npm run copyStyles\" \"npm run copyImages\" \"npm run copyJsons\" \"npm run copyMd\"",
"build": "concurrently \"npm run copyFiles\" \"tsc -p src/\"",
"build:watch": "concurrently \"npm run copyFiles\" \"tsc -p src/ -w\"",
"build:e2e": "tsc -p e2e/",
"serve": "lite-server -c=bs-config.json",
"serve:e2e": "lite-server -c=bs-config.e2e.json",
"prestart": "npm run build",
"start": "concurrently \"npm run build:watch\" \"npm run serve\"",
"pree2e": "npm run build:e2e",
"e2e": "concurrently \"npm run serve:e2e\" \"npm run protractor\" --kill-others --success first",
"preprotractor": "webdriver-manager update",
"protractor": "protractor protractor.config.js",
"pretest": "npm run build",
"test": "concurrently \"npm run build:watch\" \"karma start karma.conf.js\"",
"pretest:once": "npm run build",
"test:once": "karma start karma.conf.js --single-run",
"lint": "tslint ./src/**/*.ts -t verbose"
},
"dependencies": {
"@angular/common": "~4.0.0",
"@angular/compiler": "~4.0.0",
"@angular/core": "~4.0.0",
"@angular/forms": "~4.0.0",
"@angular/http": "~4.0.0",
"@angular/platform-browser": "~4.0.0",
"@angular/platform-browser-dynamic": "~4.0.0",
"@angular/router": "~4.0.0",
"angular-in-memory-web-api": "~0.3.0",
"angular2-markdown": "^1.6.0",
"core-js": "^2.4.1",
"minimatch": "^3.0.2",
"rxjs": "5.0.1",
"systemjs": "0.19.40",
"uuid": "^3.1.0",
"zone.js": "^0.8.4"
},
"devDependencies": {
"concurrently": "^3.2.0",
"lite-server": "^2.2.2",
"typescript": "~2.1.0",
"canonical-path": "0.0.2",
"tslint": "^3.15.1",
"lodash": "^4.16.4",
"jasmine-core": "~2.4.1",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-jasmine": "^1.0.2",
"karma-jasmine-html-reporter": "^0.2.2",
"protractor": "~4.0.14",
"rimraf": "^2.5.4",
"@types/node": "^6.0.46",
"@types/jasmine": "2.5.36"
},
"repository": {
"type": "git",
"url": "https://github.com/adologra/auto-builder-web-angular-4.git"
}
}