-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.07 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.07 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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@userdive/examples",
"description": "USERDIVE examples",
"version": "0.0.1",
"author": "UNCOVER TRUTH Inc",
"bugs": {
"url": "https://github.com/userdive/examples/pulls"
},
"dependencies": {
"@angular/common": "^5.0.3",
"@angular/compiler": "^5.0.3",
"@angular/core": "^5.0.3",
"@angular/forms": "^5.0.3",
"@angular/http": "^5.0.3",
"@angular/platform-browser": "^5.0.3",
"@angular/platform-browser-dynamic": "^5.0.3",
"@angular/router": "^5.0.3",
"@angular/upgrade": "^5.0.3",
"@uirouter/angularjs": "^1.0.11",
"angular": "^1.6.7",
"core-js": "^2.5.1",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"react-router-dom": "^4.2.2",
"reflect-metadata": "^0.1.10",
"rxjs": "^5.5.2",
"systemjs": "^0.20.19",
"userdive": "^0.4.1",
"vue": "^2.5.8",
"vue-router": "^3.0.1",
"zone.js": "^0.8.18"
},
"devDependencies": {
"@types/angular": "^1.6.39",
"@types/angular-ui-router": "^1.1.40",
"@types/history": "^4.6.2",
"@types/mocha": "^2.2.44",
"@types/node": "^8.0.53",
"@types/power-assert": "^1.4.29",
"@types/react": "^16.0.25",
"@types/react-dom": "^16.0.3",
"@types/react-router": "^4.0.17",
"@types/react-router-dom": "^4.2.1",
"@types/webdriverio": "^4.8.6",
"@uncovertruth/tslint-config": "^1.3.0",
"concurrently": "^3.5.1",
"gh-pages": "^1.1.0",
"husky": "^0.14.3",
"lint-staged": "^5.0.0",
"mocha": "^4.0.1",
"npm-run-all": "^4.1.2",
"power-assert": "^1.4.4",
"prettier": "^1.8.2",
"protractor": "^5.2.0",
"pug": "^2.0.0-rc.4",
"pug-cli": "^1.0.0-alpha6",
"pug-lint": "^2.5.0",
"pug-lint-config-uncovertruth": "^0.0.2",
"rimraf": "^2.6.2",
"ts-loader": "^3.1.1",
"ts-node": "^3.3.0",
"tslint": "^5.8.0",
"tslint-react": "^3.2.0",
"typescript": "^2.6.1",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4"
},
"homepage": "https://github.com/userdive/examples#readme",
"keywords": [
"examples",
"userdive"
],
"license": "MIT",
"lint-staged": {
"*.js": [
"prettier --write --single-quote",
"git add"
],
"*.{ts,tsx}": [
"prettier --write --single-quote --parser typescript",
"tslint --fix",
"git add"
]
},
"main": "n/a",
"private": true,
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/userdive/examples.git"
},
"scripts": {
"build": "run-p build:*",
"build:pug": "pug src/templates --out dist --silent",
"build:ts": "webpack --env=production",
"deploy": "gh-pages --dest dist",
"lint": "run-p lint:*",
"lint:pug": "pug-lint src/templates/",
"lint:ts": "tslint '{src,test}/**/*.ts{,x}'",
"prebuild": "rimraf dist tags/",
"precommit": "lint-staged",
"prestart": "npm run build",
"prew:e2e": "webdriver-manager update --standalone",
"start": "concurrently --kill-others 'npm run w:e2e' 'npm run w:dev'",
"test": "protractor protractor.conf.js",
"w:dev": "webpack-dev-server --content-base dist/",
"w:e2e": "webdriver-manager start"
}
}