This repository has been archived by the owner on Jun 8, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
99 lines (99 loc) · 2.81 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
93
94
95
96
97
98
99
{
"name": "availity-toolkit",
"version": "1.0.0",
"avVersion": "3.0.0",
"private": true,
"description": "Boilerplate Angular project using availity-workflow",
"main": "index.js",
"scripts": {
"start": "av start",
"av": "av",
"test": "av test",
"test:watch": "av test --watch",
"test:coverage": "av test --coverage",
"test:integration": "av test --integration",
"about": "av about",
"lint": "av lint",
"help": "av help",
"profile": "av profile",
"build": "av build",
"build:production": "cross-env NODE_ENV=production av build",
"build:staging": "cross-env NODE_ENV=staging av build",
"release": "av release",
"production": "cross-env NODE_ENV=production av release",
"staging": "cross-env NODE_ENV=staging av release",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/availity/availity-toolkit.git"
},
"keywords": [
"angular",
"availity",
"workflow"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/availity/availity-workflow/issues"
},
"homepage": "https://github.com/availity/availity-workflow#readme",
"dependencies": {
"@availity/api-angular": "^1.0.0-alpha.17",
"@availity/api-core": "^1.0.0-alpha.17",
"@availity/localstorage-core": "^1.0.0-alpha.17",
"@availity/upload-core": "^1.0.0-alpha.17",
"@uirouter/angularjs": "^1.0.0",
"angular": "^1.6.7",
"angular-animate": "^1.6.7",
"angular-mocks": "^1.6.7",
"angular-sanitize": "^1.6.7",
"angular-shims-placeholder": "^0.4.8",
"angular-ui-mask": "^1.8.7",
"angular-velocity": "^0.3.1",
"animate.css": "^3.5.2",
"availity-angular": "^2.2.0",
"availity-uikit": "^2.2.0",
"bootstrap": "^3.3.7",
"bootstrap-datepicker": "^1.7.1",
"jquery": "^3.2.1",
"lodash.merge": "^4.6.0",
"moment": "^2.20.1",
"select2": "^3.5.2-browserify",
"tracekit": "^0.4.4",
"tus-js-client": "^1.4.5",
"velocity-animate": "^1.5.0"
},
"devDependencies": {
"availity-workflow": "^3.1.0",
"availity-workflow-angular": "^3.1.0",
"babel-eslint": "^8.0.3",
"cross-env": "^5.0.4",
"eslint": "^4.13.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-availity": "^3.0.0-beta.10",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.5.1",
"husky": "^0.14.3",
"lerna": "^2.5.1",
"lint-staged": "^6.0.0",
"prettier": "^1.10.2"
},
"availityWorkflow": {
"plugin": "availity-workflow-angular"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
},
"lint-staged": {
"*.js": [
"prettier",
"git add"
]
}
}