forked from kiswa/TaskBoard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.97 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "taskboard",
"version": "1.0.0",
"description": "A Kanban-inspired app for keeping track of things that need to get done.",
"private": true,
"repository": {
"type": "git",
"url": "git+https://kiswa@github.com/kiswa/TaskBoard.git"
},
"keywords": [
"kanban",
"board",
"task",
"taskboard",
"track",
"todo"
],
"author": "Matthew Ross <root@matthewross.me> (https://matthewross.me)",
"bugs": {
"url": "https://github.com/kiswa/TaskBoard/issues"
},
"homepage": "https://github.com/kiswa/TaskBoard#readme",
"license": "MIT",
"watch": {
"api-changed": "dist/api/**/*.*"
},
"scripts": {
"build": "ng b --output-hashing=none",
"build:prod": "npm-run-all -s \"build -- --prod\" api-changed",
"build:dev": "npm-run-all -s build api-changed",
"watch": "npm-run-all -l -p \"build -- --watch\" dist-watch",
"dist-watch": "nodemon -w dist/api/ -x \"npm run api-changed\"",
"api-changed": "[ -d \"dist/api\" ] && chmod a+w dist/api",
"test": "npm-run-all test:app test:api",
"test:app": "ng test --code-coverage --watch=false",
"test:api": "./src/api/vendor/phpunit/phpunit/phpunit -c test/api/phpunit.xml",
"test:api-single": "./src/api/vendor/phpunit/phpunit/phpunit -c test/api/phpunit.xml -g single",
"test:watch": "ng test --code-coverage --watch",
"lint": "ng lint",
"postinstall": "cd src/api/ && composer update && composer install --optimize-autoloader && cd ../../"
},
"dependencies": {
"@angular/animations": "^6.1.8",
"@angular/common": "^6.1.8",
"@angular/compiler": "^6.1.8",
"@angular/core": "^6.1.8",
"@angular/forms": "^6.1.8",
"@angular/http": "^6.1.8",
"@angular/platform-browser": "^6.1.8",
"@angular/platform-browser-dynamic": "^6.1.8",
"@angular/router": "^6.1.8",
"chartist": "^0.11.0",
"chartist-plugin-tooltips": "^0.0.17",
"classlist.js": "^1.1.20150312",
"core-js": "^2.5.7",
"dragula": "^3.7.2",
"highlight.js": "^9.12.0",
"marked": "^0.5.1",
"ng2-dragula": "^2.1.0",
"node-sass": "^4.9.3",
"rxjs": "^6.3.3",
"scss-base": "^1.4.0",
"zone.js": "^0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.8.3",
"@angular/cli": "^6.2.3",
"@angular/compiler-cli": "^6.1.8",
"@angular/language-service": "^6.1.8",
"@types/jasmine": "~2.8.8",
"@types/jasminewd2": "~2.0.3",
"@types/node": "~10.11.0",
"bourbon": "5.1.0",
"bourbon-neat": "1.9.1",
"codelyzer": "^4.4.4",
"jasmine": "^3.2.0",
"jasmine-core": "^3.2.1",
"jasmine-spec-reporter": "~4.2.1",
"karma": "3.0.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "^2.0.4",
"karma-jasmine": "~1.1.2",
"karma-jasmine-html-reporter": "^1.3.1",
"karma-phantomjs-launcher": "^1.0.4",
"nodemon": "^1.18.4",
"npm-run-all": "^4.1.3",
"protractor": "~5.4.1",
"ts-node": "~7.0.1",
"tslint": "~5.11.0",
"typescript": "^2.9.2"
}
}